forked from hthiery/python-fritzhome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (61 loc) · 1.94 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
59
60
61
62
63
64
65
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
import re
import subprocess
name = "pyfritzhome"
version_py = os.path.join(os.path.dirname(__file__), name, "version.py")
try:
version = (
subprocess.check_output(
["git", "describe", "--tags", "--always", "--dirty"],
stderr=subprocess.STDOUT,
)
.rstrip()
.decode("ascii")
)
with open(version_py, "w") as f:
f.write("# This file was autogenerated by setup.py\n")
f.write("__version__ = '%s'\n" % (version,))
except (OSError, subprocess.CalledProcessError, IOError):
try:
with open(version_py, "r") as f:
for line in f.readlines():
val = re.findall("__version__ = '([^']+)'", line)
version = val[0]
except IOError:
version = "unknown"
with open("README.rst") as f:
readme = f.read()
setup(
name=name,
version=version,
description="Fritz!Box Smarthome Python Library",
long_description=readme,
author="Heiko Thiery",
author_email="[email protected]",
packages=find_packages(),
url="http://github.com/hthiery/python-fritzhome",
license="LGPLv2+",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", # noqa: E501
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="avm fritzbox",
install_requires=["requests"],
entry_points={
"console_scripts": [
"fritzhome= pyfritzhome.cli:main",
]
},
test_suite="tests",
include_package_data=True,
)