-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
executable file
·47 lines (42 loc) · 1.62 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.en.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="sysbus",
version="1.0.10",
description="Control by script your Livebox 2,3,4",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://rene-d.github.io/sysbus",
author="Rene Devichi",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Environment :: Console",
"Topic :: Home Automation",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Science/Research",
],
keywords="livebox sysbus",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.6",
install_requires=["requests", "graphviz", "qrcode", "python-dateutil"],
package_data={"sysbus": ["manuf"]},
entry_points={"console_scripts": ["sysbus=sysbus.sysbus:main"]},
project_urls={
"Source": "https://github.com/rene-d/sysbus",
"Bug Reports": "https://github.com/rene-d/sysbus/issues",
},
)