-
Notifications
You must be signed in to change notification settings - Fork 1
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 #10 from mjiggidy/py3.7-fixes
Py3.7 fixes
- Loading branch information
Showing
4 changed files
with
24 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__all__ = ["adder","channels","devices","urlhandlers","users","presets"] | ||
__version__ = "1.0.2" | ||
__version__ = "1.0.3" |
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 |
---|---|---|
|
@@ -9,29 +9,30 @@ | |
|
||
# Thanks https://realpython.com/pypi-publish-python-package/ | ||
setup( | ||
name="adderlib", | ||
version="1.0.2", | ||
description="Python wrapper for the Adder API, for use with Adderlink KVM systems", | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
url="https://adderlib.readthedocs.io/", | ||
download_url="https://github.com/mjiggidy/adderlib/", | ||
author="Michael Jordan", | ||
author_email="[email protected]", | ||
license="GNU General Public License v3 or later (GPLv3+)", | ||
classifiers=[ | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
name="adderlib", | ||
version="1.0.3", | ||
python_requires=">=3.7", | ||
description="Python wrapper for the Adder API, for use with Adderlink KVM systems", | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
url="https://adderlib.readthedocs.io/", | ||
download_url="https://github.com/mjiggidy/adderlib/", | ||
author="Michael Jordan", | ||
author_email="[email protected]", | ||
license="GNU General Public License v3 or later (GPLv3+)", | ||
classifiers=[ | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: System Administrators", | ||
"Topic :: Multimedia", | ||
"Topic :: Internet", | ||
"Topic :: Utilities", | ||
"Topic :: Utilities", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Natural Language :: English" | ||
], | ||
packages=["adderlib"], | ||
include_package_data=True, | ||
install_requires=["requests", "xmltodict"] | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Natural Language :: English" | ||
], | ||
packages=["adderlib"], | ||
include_package_data=True, | ||
install_requires=["requests", "xmltodict==0.12.0"] | ||
) |