-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
35 lines (28 loc) · 995 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
28
29
30
31
32
33
34
35
""" Set up script """
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name="compal",
version="0.6.0",
author="Ties de Kock",
author_email="[email protected]",
description="Compal CH7465LG/Ziggo Connect Box client",
long_description_content_type="text/markdown",
long_description=long_descr,
url="https://github.com/ties/compal_CH7465LG_py",
entry_points={},
install_requires=["requests", "lxml"],
include_package_data=True,
python_requires=">=3.7",
license="MIT",
keywords="compal CH7465LG connect box cablemodem",
packages=find_packages(exclude=["examples", "tests", "tests.*"]),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
],
)