-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
22 lines (21 loc) · 843 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
from setuptools import setup, find_packages
setup(
name='twitstream',
version='0.1',
description="A simple asynchronous HTTP library in python for speaking with Twitter's streaming API, with numerous example applications",
long_description="A simple asynchronous HTTP library in python for speaking with Twitter's streaming API, with numerous example applications",
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
],
keywords='twitter,stream',
author='Adam Lindsay',
author_email='[email protected]',
url='http://github.com/atl/twitstream',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['setuptools'],
)