-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.17 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
from setuptools import setup, find_packages
# To install the twilio-python library, open a Terminal shell, then run this
# file by typing:
#
# python setup.py install
#
# You need to have the setuptools module installed. Try reading the setuptools
# documentation: http://pypi.python.org/pypi/setuptools
setup(
name = "twitter-markov",
version = "0.1",
description = "Generator for twitter content using trending tweets and markov chains",
author = "Andrew Adams",
author_email = "adamsar@gmail.com",
url = "https://github.com/adamsar/twitter-markov",
keywords = ["python", "twitter", "markov"],
install_requires = [
'python-twitter',
'nltk',
'betterconfig',
'celery',
'kombu-sqlalchemy'
],
include_package_data=True,
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Awesome stuff",
]
)