-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
70 lines (61 loc) · 2.1 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import os
from setuptools import setup
VERSION_MAJOR = 0
VERSION_MINOR = 4
ver = '%d.%d' % (VERSION_MAJOR, VERSION_MINOR)
backlog = """
0.4 - 23.08.18 - edit message command
0.3 - 22.05.24 - send & receive documents
0.2 - 22.04.13 - add multiple users
0.1 - 22.04.12 - init version
"""
if __name__ == '__main__':
"""
Create Packet:
python setup.py sdist --formats=zip bdist_wheel # --formats=gztar
twine upload dist/*
"""
with open(os.path.join(os.getcwd(), 'README.rst'), 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='telegram-bot-unittest',
version=ver,
description='test your python-telegram-bot easily',
long_description_content_type='text/x-rst',
long_description=long_description,
author='Dontsov E.',
author_email='[email protected]',
url='https://github.com/dontsovcmc/telegram_bot_unittest',
include_package_data=True,
packages=[
'examples',
'examples.echobot',
'examples.filebot',
'telegram_bot_unittest',
'telegram_bot_unittest.pytest'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Chat',
'Topic :: Internet',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3.6',
license='LGPLv3',
install_requires=[
'python-telegram-bot',
'pytest',
'pytest-cov',
'flask',
'waitress'
],
)