-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 952 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (29 loc) · 952 Bytes
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
from setuptools import setup, find_packages
DESCRIPTION = 'Package that wraps the python-telegram-bot library to make broadcasting easier.'
# python3 setup.py sdist bdist_wheel
# twine upload --skip-existing dist/*
VERSION = '0.9.7'
setup(
name='python_telegram_broadcast',
version=VERSION,
packages=find_packages(),
description=DESCRIPTION,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='jonah_whaler_2348',
author_email='jk_saga@proton.me',
license='MIT',
install_requires=[
"python-telegram-bot==21.1.1",
"mypy"
],
keywords=[
'python', 'telegram', 'broadcast', 'bot'
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
)