forked from Ghadjeres/DeepBach
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 967 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (33 loc) · 967 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
from setuptools import setup, find_packages
import os
setup(
name="deepbach_pytorch",
version="0.3.6",
author="Gaetan Hadjeres, JinruGuan",
author_email='grudan930809@outlook.com',
url='https://github.com/Ghadjeres/DeepBach',
description="DeepBach implementation for harmonization",
long_description=open("README.md", encoding="utf-8").read() if os.path.exists("README.md") else "",
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
package_data={
"deepbach_pytorch": [
"*.sh",
"Dockerfile"
],
},
install_requires=[
"torch>=2.0.0",
"music21>=8.1.0",
"tqdm",
"numpy>=1.23.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
zip_safe=False,
)