-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (32 loc) · 1.03 KB
/
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
33
34
35
36
37
38
39
40
41
import setuptools
NAME = "danna_sep"
VERSION = '1.0.2'
AUTHOR = 'Chin-Yun Yu'
EMAIL = '[email protected]'
packages = setuptools.find_packages()
package_data = {'': ['*.pth']}
install_requires = ['torch', 'torchaudio',
'gdown', 'norbert', 'onnxruntime']
entry_points = {'console_scripts': ['danna_sep = danna_sep:entry']}
with open("README.md", "r") as fh:
long_description = fh.read()
setup_kwargs = {
'name': NAME,
'version': VERSION,
'author': AUTHOR,
'author_email': EMAIL,
'description': '',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'url': 'https://github.com/yoyololicon/danna-sep',
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'entry_points': entry_points,
'classifiers': [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
}
setuptools.setup(**setup_kwargs)