forked from Didericis/twitter-rumor-spreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 773 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
from setuptools import find_packages, setup
setup(
name='twtitter_rumor_spreader',
version='0.0.1',
description='Collection of utilities to help with graph coloring problems',
author='Didericis',
author_email='[email protected]',
python_requires='>3.4',
classifier=[
'Intended Audience :: Mathematicians',
'Topic :: Utilities',
'License :: Public Domain',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
],
install_requires=[
'tweepy==3.7.0',
"Flask>=0.10.0"
],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'twitter-rumors=twitter_rumor_spreader.cli:main',
]
},
)