-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 999 Bytes
/
setup.py
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
import setuptools
with open('README.md') as f:
text = f.read()
setuptools.setup(
name="aio_yandex_translate",
version="1.1.1",
author="Rud356",
author_email="devastator12a@mail.ru",
description="Yandex translate async api wrapper",
long_description=text,
long_description_content_type="text/markdown",
license="GPLv3",
url="https://github.com/Rud356/aioyatr",
packages=["aio_yandex_translate"],
package_dir={"aio_yandex_translate": ""},
install_requires=["aiohttp>=3.6", "aiohttp-proxy>=0.1.2"],
extras_require={"ujson": ""},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
],
python_requires=">=3.6"
)