-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.26 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "orpheus-collage-tools"
version = "1.0.0"
description = "Cross-platform Orpheus Collage Tools for music discovery and downloading"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio",
]
dependencies = [
"aiohttp>=3.8.0",
"beautifulsoup4>=4.11.0",
"requests>=2.28.0",
]
[project.urls]
Homepage = "https://pypi.org/project/orpheus-collage-tools/"
Repository = "https://github.com/brookcs3/Orpheus-CLI"
Issues = "https://github.com/brookcs3/Orpheus-CLI/issues"
[project.scripts]
orpheus = "orpheus_collage_tools.cli:main"
[tool.setuptools]
packages = ["orpheus_collage_tools"]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
orpheus_collage_tools = [
"scripts/**/*",
"lib/**/*",
]