-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
76 lines (63 loc) · 1.68 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
# Specify the required build system.
requires = ["setuptools >= 61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "emanate"
dynamic = ["version"]
authors = [
{name = "Ellen Marie Dash", email = "[email protected]"},
]
description = "Symlink files from one directory to another, similary to Effuse and Stow."
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
requires-python = ">= 3.8"
[project.urls]
repository = "https://github.com/duckinator/emanate"
documentation = "https://emanate-docs.netlify.app/cli.html"
[project.optional-dependencies]
lint = [
"bork",
"ruff"
]
test = [
"bork",
"pytest~=7.4",
"mypy~=1.6.1",
"pytest-mypy~=0.10.3",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-argparse",
]
[project.scripts]
emanate = "emanate.cli:main"
[tool.setuptools]
packages = ["emanate"]
[tool.setuptools.dynamic]
version = {attr = "emanate.__version__"}
[tool.bork.zipapp]
enabled = true
main = "emanate.cli:main"
[tool.bork.release]
pypi = true
github = true
github_repository = "duckinator/emanate"
strip_zipapp_version = true
[tool.bork.aliases]
lint = "ruff check"
test = "python -m pytest --verbose"
#docs = "env PYTHONPATH=./ pdoc3 --html --output-dir ./html --force emanate"
docs = "sphinx-build -b html -d build/doctrees docs/source/ docs/build/"
docs-clean = "rm -rf docs/build/"