Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
XpycTee committed Aug 31, 2022
1 parent 7bc406e commit 7dc2541
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aiohttp~=3.8.1
aiohttp
26 changes: 19 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,31 @@
readme = f.read()


requirements = ['aiohttp~=3.8.1']
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]

setup(name='smsru_api',
version='0.1.6',

setup(
name='smsru_api',
version='0.1.7',
description='Python API для сервиса отправки сообщений sms.ru',
url="https://git.xpyctee.ru/XpycTee/SmsRU_API",
url="https://github.com/XpycTee/smsru_api",
long_description=readme,
long_description_content_type="text/markdown",
license='Apache License 2.0',
packages=find_packages(),
author="XpycTee",
author_email='[email protected]',
classifiers=classifiers,
keywords="sms.ru api sms ru",
install_requires=requirements,
python_requires='>=3.8',
)
install_requires=['aiohttp'],
python_requires='>=3.7',
)

0 comments on commit 7dc2541

Please sign in to comment.