-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.65 KB
/
pyproject.toml
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
[project]
name = "enviparse"
dynamic = ["version"]
description = "enviparse help you manage your application properties using environment variabl"
authors = [{name = "Illuin technology", email = "[email protected]"}]
maintainers = [{ name = "Illuin Technology", email = "[email protected]" }]
requires-python = ">=3.9"
readme = "README.md"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
]
dependencies = []
[project.optional-dependencies]
attr = [
"attrs>=19.2.0,<25.0.0"
]
opyoid = [
"opyoid>=1.0.0,<3.1.0"
]
dev = [
"black==24.10.0",
"build==1.2.2.post1",
"pytest==8.3.4",
"pytest-cov==6.0.0",
"pylint==3.3.2",
"setuptools==75.6.0",
"twine==6.0.1",
"wheel==0.45.1",
]
[project.urls]
"Homepage" = "https://github.com/illuin-tech/enviparse"
"Bug Reports" = "https://github.com/illuin-tech/enviparse/issues"
"Source" = "https://github.com/illuin-tech/enviparse/"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
platforms = ["any"]
packages.find.include = ["enviparse", "enviparse.*"]
[tool.coverage]
run.source = ["enviparse"]
run.branch = true
report.exclude_also = [
"def __repr__",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.setuptools.dynamic]
version = {file = "VERSION"}