-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.19 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
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "mbmc"
version = "0.0.1"
description = "TODO: Add description"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Fabian Wunsch" }]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dependencies = [
"dotenv",
"pillow",
"bandcamp-lib",
"spotipy",
"deezer-python",
"tidalapi",
"beautifulsoup4",
"requests",
"apple-music-python",
"ytmusicapi",
"python3-discogs-client",
"musicbrainzngs",
"fuzzywuzzy[speedup]",
"transliterate",
"tqdm",
"platformdirs",
]
[project.optional-dependencies]
dev = ["black", "isort", "pip-tools", "mypy", "flake8", "coverage", "pylint"]
[project.urls]
homepage = "https://github.com/stormworks-utils/tumfl"
repository = "https://github.com/stormworks-utils/tumfl"
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
musicbrainz_submit = "musicbrainz_submit.__main__:main"