-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 888 Bytes
/
setup.py
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
"""Only intended for development."""
import setuptools
setuptools.setup(
name="auem",
version="0.0.1",
author="Konstantinos Dimitriou, Christopher Jacobi",
author_email="[email protected]",
url="https://github.com/constd/auem",
packages=setuptools.find_packages(),
install_requires=[
"hydra-core",
"torch",
"numpy",
"pandas",
"scikit-learn",
"torchvision",
"torchaudio",
"click",
"tqdm",
"gitpython",
"pescador",
],
entry_points={"console_scripts": ["auem = auem.train:entry"]},
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)