-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
23 lines (21 loc) · 860 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
#!/usr/bin/env python3
from setuptools import setup
setup(name='climabot',
version='0.1',
description='ClimateChange hackathon bot for assessing credibility scores',
url='https://github.com/IsThisAnExpert/climate_bot',
author='Francisco Arcila',
author_email='[email protected]',
license='GNU Affero General Public License v3.0',
packages = ['climabot'],
keywords=['Climate Change', 'fact-checking', 'FFF', 'scientist for future', 'S4FHD'],
scripts=['climabot/db_query_api.py', 'climabot/clima_bot.py'],
entry_points={'console_scripts':['climabot_launch=climabot.run:run_bot','hello_wo=climabot.db_query_api:print_hello']},
install_requires=[
'pandas',
'pymysql',
'mysqlclient',
'configobj',
'tweepy'
],
zip_safe=False)