forked from NextAudioGen/ultimatevocalremover_api
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 872 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 872 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
import os
from distutils.core import setup
from setuptools import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
install_requires = [
req for req in required if not req.startswith('git+')
]
# Fixed pyrubberband
dependency_links = [
'https://github.com/jhj0517/pyrubberband.git#egg=pyrubberband'
]
setup(
name='uvr',
version='0.1',
description='Universal Voice Remover API',
authors='Mohannad Barakat',
author_email="Mohannad.Barakat@fau.de",
license='MIT',
package_dir={'uvr':'src'},
long_description=open('README.md', encoding='utf-8').read(),
install_requires=install_requires,
dependency_links=dependency_links,
url="https://github.com/NextAudioGen/ultimatevocalremover_api.git",
package_data={
'uvr': ['**/*.txt', '**/*.t7', '**/*.pth', '**/*.json', '**/*.yaml', '**/*.yml']
}
)