-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
71 lines (65 loc) · 1.65 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
[project]
name = "troi"
authors = [
{ name = "MetaBrainz Foundation", email="[email protected]"}
]
description="ListenBrainz' empathic music recommendation/playlisting engine"
readme = "README.md"
requires-python=">=3.9"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dynamic = ["version"]
dependencies = [
'click>=8.0',
'countryinfo>=0.1.2',
'lb_matching_tools>=v2024.01.30.1',
'liblistenbrainz>=v0.5.5',
'more_itertools',
'mutagen==1.46.0',
'peewee>=3.17.0',
'psycopg2-binary>=2.9.3',
'py-sonic>=1.0.0',
'python-dateutil>=2.8.2',
'regex>=2023.6.3',
'requests>=2.31.0',
'scikit-learn>=1.2.1',
'spotipy>=2.22.1',
'tqdm',
'ujson>=5.4.0',
'Unidecode>=1.3.6',
]
[project.scripts]
troi = 'troi.cli:cli'
[project.optional-dependencies]
nmslib = [
'nmslib-metabrainz>=2.1.1'
]
tests = [
'pytest == 7.1.2',
'pytest-cov == 4.1.0',
'requests-mock == 1.11.0'
]
build = [
'build'
]
docs = [
'Sphinx == 5.0.2',
'sphinxcontrib-httpdomain == 1.8.0',
'sphinx_rtd_theme == 0.5.1',
'docutils == 0.17.1',
'sphinx-click == 4.3.0'
]
[project.urls]
Homepage = "https://github.com/metabrainz/troi-recommendation-playground"
Documentation = "https://troi.readthedocs.io/en/latest/"
Releases = "https://github.com/metabrainz/troi-recommendation-playground/releases"
Issues = "https://tickets.metabrainz.org/secure/RapidBoard.jspa?rapidView=14&projectKey=LB#"
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["troi"]
[tool.setuptools_scm]