This repository was archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (101 loc) · 2.72 KB
/
pyproject.toml
File metadata and controls
114 lines (101 loc) · 2.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "infisical"
description = 'Official Infisical SDK for Python'
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
authors = []
maintainers = [
{ name = "Yohann MARTIN", email = "contact@codexus.fr" },
{ name = "Tony Dang", email = "tony@infisical.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"requests ==2.31.0",
"pydantic >=1.6.2,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0",
"pycryptodomex >=3.17,<4.0.0",
"pynacl >=1.5.0,<2.0.0"
]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/Infisical/infisical-python#readme"
Issues = "https://github.com/Infisical/infisical-python/issues"
Source = "https://github.com/Infisical/infisical-python"
[project.optional-dependencies]
test = [
"pytest >=7.1.3,<8.0.0",
"coverage[toml] >= 6.5.0,< 8.0",
"responses ==0.23.1"
]
dev = [
"mypy ==1.1.1",
"ruff ==0.0.261",
"black ==23.3.0",
"isort >=5.0.6,<6.0.0",
"devtools[pygments] ==0.11.0",
"types-requests ==2.28.11.17"
]
[tool.hatch.version]
path = "infisical/__version__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/.vscode",
]
[tool.isort]
profile = "black"
known_third_party = ["infisical", "pydantic", "Cryptodome", "nacl", "responses"]
[tool.mypy]
strict = true
[tool.coverage.run]
parallel = true
source = [
"tests",
"infisical"
]
[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.ruff]
target-version = "py37"
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
# "I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.isort]
known-third-party = ["infisical"]