-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (41 loc) · 1.13 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "progfiguration"
version = "0.0.10"
description = "PROGramatic conFIGURATION for your infrastructure"
license = { text = "MIT" }
readme = "readme.md"
requires-python = ">=3.10"
[[project.authors]]
name = "Micah R Ledbetter"
email = "[email protected]"
[project.scripts]
progfiguration = "progfiguration.cli.progfiguration_core_cmd:main"
[project.optional-dependencies]
# Used for local development
development = [
"black",
"build",
"furo", # Sphinx theme
"invoke",
"mypy",
"sphinx",
"sphinx-argparse",
"sphinx-autoapi",
"sphinx-autobuild",
"twine",
]
# Used by our Github Actions workflow to autopublish documentation
ghpages-builder = ["furo", "sphinx", "sphinx-argparse", "sphinx-autoapi"]
[project.urls]
Homepage = "https://github.com/mrled/progfiguration"
[tool.black]
line-length = 120
[tool.setuptools.package-data]
"progfiguration" = ["*"]
[tool.mypy]
exclude = ["build", "dist", "docs", "venv"]
# Ignore missing imports because we do a lot of dynamic imports
ignore_missing_imports = true