-
Notifications
You must be signed in to change notification settings - Fork 21
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 #987 from mulkieran/version-3.5.2
Version 3.5.2
- Loading branch information
Showing
8 changed files
with
101 additions
and
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[metadata] | ||
name = stratis-cli | ||
author = Anne Mulhern | ||
author_email = [email protected] | ||
url = https://github.com/stratis-storage/stratis-cli | ||
description = Stratis CLI | ||
license = Apache-2.0 | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
version = attr: stratis_cli._version.__version__ | ||
platforms = | ||
Linux | ||
classifiers= | ||
Development Status :: 5 - Production/Stable | ||
Environment :: Console | ||
Intended Audience :: Developers | ||
Intended Audience :: System Administrators | ||
License :: OSI Approved :: Apache Software License | ||
Operating System :: POSIX :: Linux | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: Implementation :: CPython | ||
Programming Language :: Python :: Implementation :: PyPy | ||
Topic :: Software Development :: Libraries | ||
Topic :: System :: Filesystems | ||
Topic :: Systems Administration | ||
|
||
[options] | ||
install_requires = | ||
dbus-client-gen>=0.4 | ||
dbus-python-client-gen>=0.7 | ||
justbytes>=0.14 | ||
packaging | ||
psutil | ||
python-dateutil | ||
wcwidth | ||
|
||
package_dir = | ||
=src | ||
|
||
packages = | ||
stratis_cli | ||
stratis_cli._parser | ||
stratis_cli._actions | ||
|
||
scripts = | ||
bin/stratis |
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 |
---|---|---|
|
@@ -2,60 +2,7 @@ | |
Python packaging file for setup tools. | ||
""" | ||
|
||
# isort: STDLIB | ||
import os | ||
|
||
# isort: THIRDPARTY | ||
import setuptools | ||
|
||
|
||
def local_file(name): | ||
""" | ||
Function to obtain the relative path of a filename. | ||
""" | ||
return os.path.relpath(os.path.join(os.path.dirname(__file__), name)) | ||
|
||
|
||
with open(local_file("src/stratis_cli/_version.py"), encoding="utf-8") as o: | ||
exec(o.read()) # pylint: disable=exec-used #nosec B102 | ||
|
||
with open(local_file("README.rst"), encoding="utf-8") as o: | ||
long_description = o.read() | ||
|
||
setuptools.setup( | ||
name="stratis-cli", | ||
version=__version__, # pylint: disable=undefined-variable | ||
author="Anne Mulhern", | ||
author_email="[email protected]", | ||
description="Stratis CLI", | ||
long_description=long_description, | ||
platforms=["Linux"], | ||
license="Apache 2.0", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: System :: Filesystems", | ||
"Topic :: Systems Administration", | ||
], | ||
install_requires=[ | ||
"dbus-client-gen>=0.4", | ||
"dbus-python-client-gen>=0.7", | ||
"justbytes>=0.14", | ||
"packaging", | ||
"psutil", | ||
"python-dateutil", | ||
"wcwidth", | ||
], | ||
package_dir={"": "src"}, | ||
packages=setuptools.find_packages("src"), | ||
scripts=["bin/stratis"], | ||
) | ||
setuptools.setup() |
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 |
---|---|---|
|
@@ -17,5 +17,5 @@ | |
.. moduleauthor:: mulhern <[email protected]> | ||
""" | ||
|
||
__version_info__ = (3, 5, 1) | ||
__version_info__ = (3, 5, 2) | ||
__version__ = ".".join(str(x) for x in __version_info__) |