-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
25 lines (22 loc) · 792 Bytes
/
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
import os
import setuptools
def read(fname):
try:
with open(os.path.join(os.path.dirname(__file__), fname)) as fh:
return fh.read()
except IOError:
return ''
requirements = read('requirements.txt').splitlines()
setuptools.setup(name='wavaimidiz',
version='0.0',
description='Pytorch music boundary detection',
url='https://github.com/carlosholivan/music-boundaries-detection-cnn',
author='Carlos Hernandez-Olivan',
author_email='[email protected]',
license='https://github.com/carlosholivan/music-boundaries-detection-cnn/blob/master/LICENSE',
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
],
install_requires=requirements,
)