-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (28 loc) · 1.06 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
from setuptools import find_packages
setup(
name='gdg-pisa-user-manager',
version='1.0.0',
license='MIT License',
description='Bot for managing the Telegram group of GDG Pisa',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
author='GDG Pisa',
author_email='[email protected]',
url='https://github.com/gdgpisa/gdgpisausermanager/',
packages=find_packages(exclude=["tests", "tests.*"]),
py_modules=['gdgpisausermanager'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Communications :: Chat',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
install_requires=['python-telegram-bot<=12.8'],
entry_points={'console_scripts': ['gdg-pisa-user-manager = gdgpisausermanager:main']},
)