-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 1.22 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='musictheory',
version='0.6.0.1',
author='Peter Murphy',
author_email='[email protected]',
packages=['musictheory'],
url='http://pypi.python.org/pypi/musictheory/',
license='LICENSE.txt',
description='Provides classes for "music set theory"-like analysis.',
keywords='music set theory temperament scale chords',
long_description=open('README.txt').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Artistic Software',
'Topic :: Education',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Other/Nonlisted Topic',
'Topic :: Software Development',
'Topic :: Utilities',
],
)