-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.09 KB
/
setup.py
File metadata and controls
32 lines (31 loc) · 1.09 KB
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
# setup.py
from setuptools import find_packages, setup
# TODO: Переписать пример. Там тип message не тот
# TODO: Убрать List Dict и тд тк они не нужны в Python 3.9+
# TODO: Пофиксить тесты
setup(
name='PyroArgs',
version='1.5', # ВЕРСИЯ
description='Удобная обработка аргументов команд для Pyrogram',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='vo0ov',
author_email='artgr123@yandex.ru',
url='https://github.com/vo0ov/TG-UserBot',
packages=find_packages(),
install_requires=[
'pyrogram>=2.0.0',
],
extras_require={
'all': ['TgCrypto>=1.2.2'],
'crypto': ['TgCrypto>=1.2.2'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.7',
)