-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
30 lines (26 loc) · 1.01 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
from distutils.core import setup
from setuptools import find_packages
import glob
package_data = ['files/*']
scripts = glob.glob('bin/*')
setup(
name = 'ADTLib',
packages=find_packages(exclude=[]),
version = '2.1.2',
description = 'Automated Drum Trancription Library',
author = 'Carl Southall',
author_email = 'carl.southall@bcu.ac.uk',
license='BSD',
url = 'https://github.com/CarlSouthall/ADTLib',
download_url = 'https://github.com/CarlSouthall/ADTLib',
keywords = ['Drums', 'Transcription', 'Automated'],
scripts=scripts,
classifiers = [
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: BSD License',
'License :: Free for non-commercial use',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Scientific/Engineering :: Artificial Intelligence'],
install_requires=['numpy','scipy','cython','madmom','fpdf'],
package_data={'ADTLib': package_data},
)