-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from jbouwh/update-project-details-readme
Update project details and readme
- Loading branch information
Showing
3 changed files
with
34 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
VERSION = eval(line.split("=")[-1]) | ||
break | ||
|
||
URL = "https://github.com/zxdavb/incomfort-client" | ||
URL = "https://github.com/jbouwh/incomfort-client" | ||
|
||
with open("README.md", "r") as fh: | ||
LONG_DESCRIPTION = fh.read() | ||
|
@@ -35,8 +35,8 @@ def run(self): | |
name="incomfort-client", | ||
description="An aiohttp-based client for Intergas InComfort/InTouch Lan2RF systems", | ||
keywords=["intergas", "incomfort", "intouch", "lan2rf"], | ||
author="David Bonnes", | ||
author_email="[email protected]", | ||
author="Jan Bouwhuis", | ||
author_email="[email protected]", | ||
url=URL, | ||
download_url=f"{URL}/archive/{VERSION}.tar.gz", | ||
install_requires=[list(val.strip() for val in open("requirements.txt"))], | ||
|
@@ -50,7 +50,7 @@ def run(self): | |
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Topic :: Home Automation", | ||
], | ||
cmdclass={ | ||
|