-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
40 lines (36 loc) · 2.7 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
from setuptools import setup
import imp
with open('README.md') as file:
long_description = file.read()
version = imp.load_source('desreo.version', 'desreo/version.py')
setup(
name='desreo',
version=version.version,
description='',
author='',
author_email='[email protected]',
url='',
download_url='https://github.com/iranroman/desreo',
packages=['desreo'],
long_description=long_description,
long_description_content_type='text/markdown',
keywords='',
license='',
classifiers=[
"License :: Creative Commons Attribution 4.0",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Audio :: Rap",
],
install_requires=[
'pathlib',
'pytube',
'demucs',
'scipy',
'librosa',
'torchdiffeq>=0.2.3',
'pyyaml>=6.0',
],
)