forked from yozik04/vallox_websocket_api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (40 loc) · 1.26 KB
/
setup.py
File metadata and controls
46 lines (40 loc) · 1.26 KB
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
from os import path as p
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(filename, parent=None):
parent = parent or __file__
try:
with open(p.join(p.dirname(parent), filename)) as f:
return f.read()
except IOError:
return ""
setup(
name="vallox_websocket_api",
packages=["vallox_websocket_api"],
version="2.11.0",
python_requires=">=3.6.0, <4",
description="Vallox WebSocket API",
author="Jevgeni Kiski",
author_email="yozik04@gmail.com",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/yozik04/vallox_websocket_api",
license="LGPL 3",
keywords="vallox api",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
install_requires=[
"websockets >= 9.1, < 11.0",
"construct >= 2.9.0, < 3.0.0"
],
setup_requires=["wheel"],
tests_require=["mock", "asynctest"],
)