forked from StevenLooman/async_upnp_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·58 lines (47 loc) · 1.45 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""Setup."""
import os.path
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.rst"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
PACKAGES = (
"async_upnp_client",
"async_upnp_client.profiles",
)
INSTALL_REQUIRES = [
"voluptuous>=0.12.1",
"aiohttp>=3.7.4",
"async-timeout>=3.0,<4.0",
"python-didl-lite~=1.2.6",
"defusedxml>=0.6.0",
]
TEST_REQUIRES = [
"pytest~=6.1.2",
"pytest-asyncio~=0.14.0",
]
setup(
name="async_upnp_client",
version="0.16.1.dev0",
description="Async UPnP Client",
long_description=LONG_DESCRIPTION,
url="https://github.com/StevenLooman/async_upnp_client",
author="Steven Looman",
author_email="[email protected]",
license="http://www.apache.org/licenses/LICENSE-2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages=PACKAGES,
package_data={
"async_upnp_client": ["py.typed"],
},
install_requires=INSTALL_REQUIRES,
tests_require=TEST_REQUIRES,
entry_points={"console_scripts": ["upnp-client=async_upnp_client.cli:main"]},
)