-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (38 loc) · 1.23 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
from setuptools import setup
setup(name='dissonant',
version='0.1.1',
description='Musical chord dissonance models',
url='https://github.com/bzamecnik/dissonant',
author='Bohumir Zamecnik',
author_email='[email protected]',
zip_safe=False,
packages=['dissonant'],
install_requires=[
'numpy',
],
extra_requires={
'notebooks': [
'ipywidgets',
'jupyter',
'matplotlib',
'scipy',
]
},
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X'
]
)