-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (21 loc) · 817 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(name="chippy",
version="0.1.0",
author="Benjamin Moran",
author_email="[email protected]",
description="A pure Python module for creating various chiptune style waveforms",
license="MIT",
keywords="audio synthesizer chiptune",
url="https://github.com/benmoran56/chippy",
packages=['chippy'],
long_description=readme,
classifiers=["Topic :: Utilities",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3"],
)