-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.02 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1.02 KB
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
from setuptools import setup, find_packages
with open("requirements.txt", "r") as fh:
install_requires = [line for line in fh.readlines() if line[0] not in ("#", "-")]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="bmrcli",
version="1.1.4",
description="Command-line tool for BMR HC64 heating controller",
long_description=long_description,
long_description_content_type="text/markdown",
author="Dan Keder",
author_email="dan.keder@protonmail.com",
url="http://github.com/dankeder/bmrcli",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points={"console_scripts": ["bmrcli = bmrcli:main"]},
python_requires='>=3.6',
keywords="bmr hc64 heating home-automation",
classifiers=[
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)