-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (44 loc) · 1.16 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rebuildap"
authors = [
{ name="Bernhard Wagner", email="[email protected]" },
]
description = "rebuild Audacity project"
readme = "README.md"
license = { file = "LICENSE.txt"}
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"] # this belongs in the [project] section
dependencies = [
"pyperclip",
"psutil",
"typer",
"pyaudacity @ git+https://github.com/bwagner/pyaudacity.git",
]
[project.urls]
"Homepage" = "https://github.com/bwagner/rebuildap"
"Bug Tracker" = "https://github.com/bwagner/rebuildap/issues"
[tool.isort]
profile = 'black'
[project.scripts]
rebuildap = "rebuildap:main"
[tool.pytest.ini_options]
addopts = "--doctest-modules"
doctest_optionflags = "NORMALIZE_WHITESPACE ELLIPSIS"
testpaths = [
"tests",
]
[tool.hatch.version]
path = "__about__.py"
[tool.hatch.metadata]
allow-direct-references = true # required for direct reference currency_file
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.hatch.build]
exclude = ["venv/**"]