forked from casebeer/audiogen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (29 loc) · 850 Bytes
/
setup.py
File metadata and controls
37 lines (29 loc) · 850 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
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
from setuptools import setup, find_packages
required_modules = []
extras_require = {
'soundcard_playback': ['pyaudio'],
}
with open("README.rst", "rb") as f:
readme = f.read().decode('utf8')
setup(
name="audiogen",
version="0.1.2",
description="Generator based tools for working with audio clips.",
author="Christopher H. Casebeer",
author_email="",
url="https://github.com/casebeer/audiogen",
packages=find_packages(exclude='tests'),
install_requires=required_modules,
extras_require=extras_require,
tests_require=["nose"],
test_suite="nose.collector",
long_description=readme,
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio",
]
)