-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (25 loc) · 950 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
from os import path
from setuptools import setup, find_packages
long_description = ""
with open(path.join(".", 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name="knx-stack",
version="0.9.2",
description="A python3 KNX stack for USB HID and KNXnet IP",
url="https://github.com/majamassarini/knx-stack",
long_description=long_description,
long_description_content_type='text/markdown',
author="Maja Massarini",
author_email="maja.massarini@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Topic :: Communications",
"Intended Audience :: Developers",
],
packages=find_packages(exclude=[]),
include_package_data=True,
)