-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
60 lines (52 loc) · 1.15 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
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "dotlink"
authors = [
{name = "Amethyst Reese", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
dynamic = ["version", "description"]
requires-python = ">=3.8"
dependencies = [
"click >= 8",
"platformdirs >= 4",
"typing_extensions >= 4",
]
[project.optional-dependencies]
dev = [
"attribution==1.7.1",
"black==24.4.2",
"flake8==7.0.0",
"flit==3.9.0",
"mypy==1.10.0",
"pytest==8.2.0",
"usort==1.0.8.post1",
"ufmt==2.5.1",
]
[project.scripts]
dotlink = "dotlink.cli:main"
[project.urls]
home-page = "https://github.com/amyreese/dotlink"
Github = "https://github.com/amyreese/dotlink"
[tool.flit.sdist]
exclude = [
".github/",
]
[tool.attribution]
name = "dotlink"
package = "dotlink"
ignored_authors = ["dependabot"]
version_file = true
signed_tags = true
[tool.mypy]
strict = true
[tool.pytest.ini_options]
python_files = "tests/*.py"