-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
34 lines (31 loc) · 1.09 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
[build-system]
requires = ["flit_core ~= 3.4.0"]
build-backend = "flit_core.buildapi"
[project]
dynamic = ["version", "description"]
name = "configstore"
authors = [ { name = "Caravan Coop", email = "[email protected]" } ]
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration",
]
requires-python = ">= 3"
dependencies = [
]
[project.optional-dependencies]
# Note that django-dotenv does not actually use or need Django
dotenv = ["django-dotenv"]
# Alternate dotenv module, used by docker-compose
pydotenv = ["python-dotenv"]
awsssm = ["boto3"]
[project.urls]
Homepage = "https://github.com/caravancoop/configstore"
Changelog = "https://github.com/caravancoop/configstore/blob/main/CHANGELOG.rst"
Documentation = "https://github.com/caravancoop/configstore/blob/main/example.py"