-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (37 loc) · 1.09 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
from setuptools import setup, find_packages
setup(
name = 'tweet-music',
version = '0.0.3',
description = "",
long_description = "",
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords = 'Art, Music, Midi, Twitter',
author = 'Brian Abelson',
author_email = '[email protected]',
url = 'http://github.com/csvsoundsystem/tweet-music',
license = 'MIT',
packages = find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages = [],
include_package_data = False,
zip_safe = False,
install_requires = [
"Cython==0.19.2",
"Pillow==2.3.0",
"PyYAML==3.10",
"nltk==2.0.4",
"python-rtmidi==0.4.3b1",
"requests==2.2.0",
"six==1.5.2",
"socketIO-client==0.5.3",
"tweepy==2.1",
"websocket-client==0.12.0",
"wsgiref==0.1.2"
],
tests_require = []
)