-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.13 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
from setuptools import setup
setup(
name='telegram-task-bot',
version='0.1.2',
description='Library for writing task based telegram bots',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='bb4L',
author_email='[email protected]',
project_urls={
"Source Code": "https://github.com/bb4L/telegram-task-bot-pip"},
packages=['telegramtaskbot', 'telegramtaskbot.Tasks'],
keywords=['Telegram', 'Bot'],
install_requires=[
'python-telegram-bot==12.2.0',
'python-dotenv==0.10.3',
'requests==2.22.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
include_package_data=True,
)
# python setup.py sdist && twine upload dist/*