forked from ckoepp/TwitterSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 910 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
23
24
25
26
27
28
from setuptools import setup
def readme():
with open('README.markdown') as f:
return f.read()
setup(name='TwitterSearch',
version='0.60',
description='A library to easily iterate tweets found by the Twitter Search API',
long_description=readme(),
url='http://github.com/ckoepp/TwitterSearch',
author='Christian Koepp',
author_email='christian.koepp@tum.de',
license='MIT',
packages=['TwitterSearch'],
keywords='twitter api search',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
],
install_requires=[
'oauth2',
'simplejson',
],
zip_safe=False)