forked from GDGAracaju/GDGAjuBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.23 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# encoding=utf8
import codecs
from setuptools import setup
requirements = (
'beaker==1.9.1',
'beautifulsoup4==4.6.0',
'certifi==2018.4.16',
'chardet==3.0.4',
'dj-database-url==0.5.0',
'future==0.16.0',
'idna==2.6',
'pony==0.7.3',
'psycopg2-binary==2.7.4',
'python-telegram-bot==10.0.1',
'pyyaml==3.12',
'requests==2.18.4',
'urllib3==1.22',
)
setup(
name="gdgajubot",
version="1.7.0",
author="GDG Aracaju",
url="http://gdgaracaju.com.br/",
description="GDG Aracaju Bot",
long_description=codecs.open("README.md", 'r', encoding='utf-8').read(),
license="GPLv2",
entry_points={
'console_scripts': [
'gdgajubot = gdgajubot.__main__:main',
],
},
packages=['gdgajubot', 'gdgajubot.data'],
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.6",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: Portuguese (Brazilian)",
"Topic :: Communications :: Chat",
],
)