-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 737 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 737 Bytes
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
from setuptools import setup, find_packages
import sys, os
author = "Rune Halvorsen"
email = "runefh@gmail.com"
version = "0.3.3"
homepage = "http://bitbucket.org/runeh/tweetstream/"
setup(name='tweetstream',
version=version,
description="Simple Twitter streaming API access",
long_description=open("README").read(),
classifiers=[
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
],
keywords='twitter',
author=author,
author_email=email,
url=homepage,
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
platforms=["any"],
install_requires = ['anyjson'],
)