-
-
Notifications
You must be signed in to change notification settings - Fork 363
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 #2774 from jimklimov/issue-2773
Fix PEP-0625 naming for PyNUTClient tarball
- Loading branch information
Showing
6 changed files
with
33 additions
and
6 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
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,9 +15,10 @@ with codecs.open(os.path.join(here, "README.txt"), encoding="utf-8") as fh: | |
long_description = "\n" + fh.read() | ||
|
||
setup( | ||
name = "PyNUTClient", | ||
name = "pynutclient", ### "PyNUTClient" lower-cased due to PEP-0625 | ||
version = '@NUT_SOURCE_GITREV_NUMERIC@', | ||
author = "The Network UPS Tools project", | ||
license = "GPL-3.0-or-later", | ||
license_files = ('LICENSE-GPL3',), | ||
author_email = "[email protected]", | ||
description = "Python client bindings for NUT", | ||
|
@@ -39,6 +40,10 @@ setup( | |
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"Topic :: System :: Monitoring", | ||
"Topic :: System :: Systems Administration", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Programming Language :: Python :: 2.6", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
|