generated from br3ndonland/template-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
114 lines (101 loc) · 2.33 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
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]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [{email = "bws@bws.bio", name = "Brendon Smith"}]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"anyio>=3.3,<4",
]
description = "Unified environment variable and settings management for FastAPI and beyond."
dynamic = ["version"]
keywords = ["asgi", "dotenv", "environment variables", "fastapi", "settings"]
license = "MIT"
name = "fastenv"
readme = "README.md"
requires-python = ">=3.8.1,<4"
[project.optional-dependencies]
checks = [
"black>=22,<23",
"flake8>=6,<7",
"isort>=5,<6",
"mypy==0.991",
"pre-commit>=2,<3",
]
cloud = [
"httpx>=0.23,<0.24",
]
docs = [
"mkdocs-material>=8,<9",
]
httpx = [
"httpx>=0.23,<0.24",
]
tests = [
"coverage[toml]>=6,<7",
"freezegun>=1,<2",
"httpx>=0.23,<0.24",
"pytest>=7,<8",
"pytest-mock>=3,<4",
]
[project.urls]
Documentation = "https://fastenv.bws.bio"
Homepage = "https://github.com/br3ndonland/fastenv"
Repository = "https://github.com/br3ndonland/fastenv"
[tool.hatch.build.targets.sdist]
include = ["/fastenv"]
[tool.hatch.envs.ci]
dev-mode = false
features = [
"checks",
"tests",
]
path = ".venv"
[tool.hatch.envs.default]
dev-mode = true
features = [
"checks",
"docs",
"tests",
]
path = ".venv"
[tool.hatch.envs.docs]
dev-mode = false
features = [
"docs",
]
[tool.hatch.version]
path = "fastenv/__init__.py"
[tool.coverage.report]
exclude_lines = ["if TYPE_CHECKING:", "pragma: no cover"]
fail_under = 100
show_missing = true
[tool.coverage.run]
command_line = "-m pytest"
source = ["fastenv", "tests"]
[tool.isort]
profile = "black"
src_paths = ["fastenv", "tests"]
[tool.mypy]
files = ["**/*.py"]
show_error_codes = true
strict = true
[tool.pytest.ini_options]
addopts = "-q"
minversion = "6.0"
testpaths = ["tests"]