-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (27 loc) · 1.11 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
[project]
name = "bandripper"
description = "Rip mp3s from bandcamp."
version = "0.3.0"
dependencies = ["noiftimer", "printbuddies", "argshell", "beautifulsoup4", "gruel", "pathier", "quickpool", "rich", "typing_extensions"]
readme = "README.md"
keywords = ["bandcamp", "download", "downloader", "music", "audio"]
classifiers = ["Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent"]
requires-python = ">=3.10, <3.12"
[[project.authors]]
name = "Matt Manes"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/matt-manes/bandripper"
Documentation = "https://github.com/matt-manes/bandripper/tree/main/docs"
"Source code" = "https://github.com/matt-manes/bandripper/tree/main/src/bandripper"
[project.scripts]
bandripper = "bandripper.bandripper:main"
[tool]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = "src"
[tool.hatch.build.targets.sdist]
exclude = [".coverage", ".pytest_cache", ".vscode", "tests", ".gitignore", "docs", "htmlcov", "*.md"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"