Skip to content

Commit 7dc2541

Browse files
committed
Update
1 parent 7bc406e commit 7dc2541

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
aiohttp~=3.8.1
1+
aiohttp

setup.py

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,31 @@
55
readme = f.read()
66

77

8-
requirements = ['aiohttp~=3.8.1']
8+
classifiers = [
9+
"Programming Language :: Python :: 3",
10+
"Programming Language :: Python :: 3.7",
11+
"Programming Language :: Python :: 3.8",
12+
"Programming Language :: Python :: 3.9",
13+
"Programming Language :: Python :: 3.10",
14+
"Programming Language :: Python :: Implementation :: PyPy",
15+
"Intended Audience :: Developers",
16+
"Topic :: Software Development :: Libraries",
17+
]
918

10-
setup(name='smsru_api',
11-
version='0.1.6',
19+
20+
setup(
21+
name='smsru_api',
22+
version='0.1.7',
1223
description='Python API для сервиса отправки сообщений sms.ru',
13-
url="https://git.xpyctee.ru/XpycTee/SmsRU_API",
24+
url="https://github.com/XpycTee/smsru_api",
1425
long_description=readme,
1526
long_description_content_type="text/markdown",
1627
license='Apache License 2.0',
1728
packages=find_packages(),
1829
author="XpycTee",
1930
author_email='i@xpyctee.ru',
31+
classifiers=classifiers,
2032
keywords="sms.ru api sms ru",
21-
install_requires=requirements,
22-
python_requires='>=3.8',
23-
)
33+
install_requires=['aiohttp'],
34+
python_requires='>=3.7',
35+
)

0 commit comments

Comments
 (0)