-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.14 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 = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "applecrate"
authors = [{ name = "Rhet Turnbull", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = ["License :: OSI Approved :: Apache Software License"]
dynamic = ["version", "description"]
dependencies = [
"Jinja2>=3.1.3",
"click>=8.1.7",
"markdown2>=2.4.12",
"packaging>=23.2",
"pip>=24.0",
"toml>=0.10.2",
]
[project.optional-dependencies]
dev = [
"bump2version>=1.0.1,<2.0.0",
"cogapp>=3.3.0,<4.0.0",
"mypy>=1.8.0",
"types-toml",
]
lint = ["ruff>=0.1.14"]
test = ["pytest>=7.4.2", "pytest-cov", "mypy>=1.8.0"]
docs = [
"mkdocs>=1.4.2",
"mkdocs-material>=9.0.13",
"mkdocstrings-python>=0.8.3",
]
[project.urls]
Home = "https://github.com/RhetTbull/applecrate"
Issues = "https://github.com/RhetTbull/applecrate/issues"
Source = "https://github.com/RhetTbull/applecrate"
[project.scripts]
applecrate = "applecrate.cli:cli"
[tool.flit.sdist]
exclude = ["site/**/*", "tests/**/*"]
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
line-length = 130