-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (30 loc) · 918 Bytes
/
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
[build-system]
requires = [ "setuptools>=46.4.0", "wheel>=0.36.2"]
build-backend = "setuptools.build_meta"
[project]
name = "acme_config"
version = "0.0.1"
description = "System to store application configuration"
readme = "README.md"
classifiers = [ "Programming Language :: Python :: 3.12", ]
dependencies = [ "python-dotenv", "boto3" ]
[[project.authors]]
email = "[email protected]"
[project.scripts]
ac = "acme_config._main:main"
[project.urls]
homepage = "https://example.com"
repository = "https://example.com"
[project.optional-dependencies]
dev = [
"pytest", # for testing
"uv", # for venv
"mkdocs", # for documentation
"mkdocs-material", # theme for mkdocs
"mkdocstrings[python]", # mkdocs plugin to generate API docs from sources
"jupyterlab", # for jupyter notebooks
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["acme_config"]
# [tool.setuptools.package-data]