-
Notifications
You must be signed in to change notification settings - Fork 159
/
setup.py
81 lines (74 loc) · 2.73 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import bz2
from importlib.machinery import SourceFileLoader
import os
import sys
import pkg_resources
from setuptools import setup, find_packages
try:
from urllib.request import urlretrieve
except ImportError:
from urllib import urlretrieve
model_capacities = ['tiny', 'small', 'medium', 'large', 'full']
weight_files = ['model-{}.h5'.format(cap) for cap in model_capacities]
base_url = 'https://github.com/marl/crepe/raw/models/'
if len(sys.argv) > 1 and sys.argv[1] == 'sdist':
# exclude the weight files in sdist
weight_files = []
else:
# in all other cases, decompress the weights file if necessary
for weight_file in weight_files:
weight_path = os.path.join('crepe', weight_file)
if not os.path.isfile(weight_path):
compressed_file = weight_file + '.bz2'
compressed_path = os.path.join('crepe', compressed_file)
if not os.path.isfile(compressed_file):
print('Downloading weight file {} ...'.format(compressed_file))
urlretrieve(base_url + compressed_file, compressed_path)
print('Decompressing ...')
with bz2.BZ2File(compressed_path, 'rb') as source:
with open(weight_path, 'wb') as target:
target.write(source.read())
print('Decompression complete')
version = SourceFileLoader('crepe.version', os.path.join('crepe', 'version.py'))
version = version.load_module()
with open('README.md') as file:
long_description = file.read()
setup(
name='crepe',
version=version.version,
description='CREPE pitch tracker',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/marl/crepe',
author='Jong Wook Kim and Justin Salamon',
packages=find_packages(),
entry_points = {
'console_scripts': ['crepe=crepe.cli:main'],
},
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='tfrecord',
project_urls={
'Source': 'https://github.com/marl/crepe',
'Tracker': 'https://github.com/marl/crepe/issues'
},
install_requires=[
str(requirement)
for requirement in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
package_data={
'crepe': weight_files
},
)