forked from GDGAracaju/GDGAjuBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1011 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
34
# encoding=utf8
import codecs
from setuptools import setup
setup(
name = "gdgajubot",
version = "1.2",
author = "GDG Aracaju",
url = "http://site.gdgaracaju.com.br/",
description = "GDG Aracaju Bot",
long_description = codecs.open("README.md", 'r', encoding='utf-8').read(),
license = "GPLv2",
packages = ["gdgajubot"],
scripts = ['scripts/gdgajubot'],
install_requires=[
"Beaker==1.8.0",
"beautifulsoup4==4.4.1",
"pyTelegramBotAPI==1.4.1",
"requests==2.5.3",
"Flask==0.10.1",
"tailer==0.4.1",
],
classifiers = [
"Programming Language :: Python :: 3.4",
"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",
],
)