-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 763 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
if __name__ == '__main__':
setup(
name='phase',
version='0.0.1',
description="Automatic Steve Reich phasing music.",
author='Jonathan Marmor',
author_email='jmarmor@gmail.com',
url='https://github.com/jonathanmarmor/phase',
packages=['phase'],
long_description="""Automatic Steve Reich phasing music.""",
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
],
keywords='music',
license='GPL',
install_requires=[
'sox',
],
)