-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
36 lines (33 loc) · 1.3 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
from setuptools import setup, find_packages # type: ignore
with open('README.rst') as file:
long_description = file.read()
setup(name='PyTuning',
version='0.0.0-dev',
description='A Python package for the exploration of musical tunings.',
author='Mark Conway Wirt',
author_email='[email protected]',
license='MIT',
url='https://github.com/MarkCWirt/PyTuning',
packages=find_packages(where="src"),
scripts=['src/pytuning/interactive.py'],
install_requires=['sympy', 'numpy'],
package_dir={'': 'src'},
package_data={
'': ['README.rst', 'License.txt', 'docs/*'],
},
include_package_data=True,
platforms='Platform Independent',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='Music Scales Tuning Microtonalities',
long_description=long_description
)