|
5 | 5 | readme = f.read()
|
6 | 6 |
|
7 | 7 |
|
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 | +] |
9 | 18 |
|
10 |
| -setup(name='smsru_api', |
11 |
| - version='0.1.6', |
| 19 | + |
| 20 | +setup( |
| 21 | + name='smsru_api', |
| 22 | + version='0.1.7', |
12 | 23 | description='Python API для сервиса отправки сообщений sms.ru',
|
13 |
| - url="https://git.xpyctee.ru/XpycTee/SmsRU_API", |
| 24 | + url="https://github.com/XpycTee/smsru_api", |
14 | 25 | long_description=readme,
|
15 | 26 | long_description_content_type="text/markdown",
|
16 | 27 | license='Apache License 2.0',
|
17 | 28 | packages=find_packages(),
|
18 | 29 | author="XpycTee",
|
19 | 30 | author_email='i@xpyctee.ru',
|
| 31 | + classifiers=classifiers, |
20 | 32 | 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