-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (32 loc) · 1.13 KB
/
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
31
32
33
34
35
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup
with open("README.md", "r") as f:
readme = f.read()
setup(
name="aiosyncthing",
version="0.6.3",
author="Gleb Sinyavskiy",
author_email="zhulik.gleb@gmail.com",
description="Asynchronous Python client for the Syncthing REST API",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/zhulik/aiosyncthing",
license="The MIT License",
install_requires=["aiohttp>=3.7.4, <4.0.0", "yarl>=1.6.3, <2.0.0"],
packages=["aiosyncthing"],
package_dir={"aiosyncthing": "aiosyncthing"},
include_package_data=True,
zip_safe=True,
keywords="syncthing,sync,rest,backup,api,aio,async,await",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: System :: Archiving :: Mirroring",
],
)