forked from chrisdonahue/ddc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 847 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (32 loc) · 847 Bytes
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
from setuptools import setup, find_packages
import os
def read_version():
with open(os.path.join(os.path.dirname(__file__), "VERSION"), encoding="utf-8") as f:
return f.read().strip()
setup(
name="ddc",
version=read_version(),
description="Dance Dance Convolution: Automatic Stepchart Generation",
packages=find_packages(),
install_requires=[
"tensorflow>=2.0",
"numpy",
"tqdm",
"scipy",
"librosa",
"mutagen",
"Pillow",
"requests",
"pandas",
"scikit-learn",
"simfile",
"python-dotenv",
"torch",
"resampy",
],
scripts=["autochart.py"],
include_package_data=True,
author="Jules (Modernized Port)",
author_email="jules@example.com",
url="https://github.com/chrisdonahue/ddc",
)