forked from michaelbrooks/twitter-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 911 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
29
30
31
32
33
from setuptools import setup
VERSION="0.2.10"
setup(
name="twitter-monitor",
packages=['twitter_monitor'],
version=VERSION,
download_url='https://github.com/michaelbrooks/twitter-monitor/archive/v%s.zip' % VERSION,
url="https://github.com/michaelbrooks/twitter-monitor",
author="Michael Brooks",
author_email="mjbrooks@uw.edu",
description=("A Twitter streaming library built on tweepy "
"that enables dynamic term tracking"),
long_description=open('README.md').read(),
license="MIT",
keywords=["twitter", "streaming", "tweepy", "filter"],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
install_requires=[
"tweepy >= 3.0"
],
test_suite="tests",
tests_require=["mock == 1.0.1"],
scripts=['scripts/stream_tweets'],
)