forked from GDGAracaju/GDGAjuBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.01 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
# encoding=utf8
import codecs
from setuptools import setup
with open('requirements.txt') as requirements_file:
requirements = requirements_file.read().splitlines()
setup(
name = "gdgajubot",
version = "1.4",
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",
entry_points={
'console_scripts': [
'gdgajubot=gdgajubot.gdgajubot:main',
],
},
packages = ["gdgajubot"],
install_requires = requirements,
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",
],
)