-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
42 lines (31 loc) · 1.07 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
37
38
39
40
41
42
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# if sys.version_info < (2, 6): json?
setup(
name = "ndevutils",
version = "0.1",
description = """Interactive utilities for developers using the NDEV HTTP service.""",
long_description = read('README.md'),
url = "https://github.com/NuanceDev/ndev-python-http-cli",
author = "Nuance Communications, Inc.",
author_email = "[email protected]",
packages = find_packages(),
dependency_links = [
"http://people.csail.mit.edu/hubert/pyaudio/packages/pyaudio-0.2.8.tar.gz#egg=pyaudio",
],
install_requires = [
"numpy",
"pyaudio",
"scikits.samplerate",
"requests>=1.2.0",
],
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Environment :: Console',
'Topic :: Utilities',
],
)