forked from molobrakos/tellsticknet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (24 loc) · 799 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (24 loc) · 799 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import exists
setup(
name="tellsticknet",
version="0.1.2",
description="Listen for UDP sensor broadcasts from a Tellstick",
url="https://github.com/molobrakos/tellsticknet",
author="Erik Eriksson",
author_email="error.errorsson@gmail.com",
keywords="tellstick",
packages=find_packages(),
long_description=(open("README.md").read() if exists("README.md") else ""),
install_requires=list(open("requirements.txt").read().strip().split("\n")),
scripts=[],
extras_require={},
entry_points={
"console_scripts": ["tellsticknet=tellsticknet.__main__:app_main"]
},
zip_safe=False,
classifiers=[
"License :: OSI Approved :: MIT License",
],
)