From 673cf3e748105b14b97353858428d4ad05f7dd96 Mon Sep 17 00:00:00 2001 From: Gregor von Laszewski Date: Sat, 16 Dec 2023 00:38:11 -0500 Subject: [PATCH] bump version 5.0.13 --- VERSION | 2 +- pyproject.toml | 2 +- setup.cfg-old | 81 ---------------------------------- setup.py-old | 115 ------------------------------------------------- 4 files changed, 2 insertions(+), 198 deletions(-) delete mode 100644 setup.cfg-old delete mode 100644 setup.py-old diff --git a/VERSION b/VERSION index 718db1c..2713f14 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.0.12 +5.0.13 diff --git a/pyproject.toml b/pyproject.toml index 576bfc8..57c0b69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ classifiers = [ "Operating System :: OS Independent", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: Linux", - "Operating System :: Microsoft :: Windows :: Windows 10 :: Windows 11", + "Operating System :: Microsoft :: Windows :: Windows 10", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.12", diff --git a/setup.cfg-old b/setup.cfg-old deleted file mode 100644 index 0da9ed3..0000000 --- a/setup.cfg-old +++ /dev/null @@ -1,81 +0,0 @@ -[bdist_wheel] -universal = 1 - -# setup.cfg - -[metadata] -name = cloudmesh-common -version = attr: cloudmesh_common.VERSION -author = Gregor von Laszewski -author_email = laszewski@gmail.com -description = A set of useful APIs for cloudmesh -long_description = file: README.md -long_description_content_type = text/markdown -url = https://github.com/cloudmesh/cloudmesh-common -license = Apache 2.0 -classifiers = - Development Status :: 5 - Production/Stable - Environment :: Console - Environment :: Other Environment - Environment :: Plugins - Intended Audience :: Information Technology - Intended Audience :: Developers - Intended Audience :: Education - Intended Audience :: Science/Research - Intended Audience :: System Administrators - License :: OSI Approved :: Apache Software License - Natural Language :: English - Operating System :: OS Independent - Operating System :: MacOS :: MacOS X - Operating System :: POSIX :: Linux - Operating System :: Microsoft :: Windows :: Windows 10 - Programming Language :: Python - Programming Language :: Python :: 3 - Programming Language :: Python :: 3.12 - Topic :: Internet - Topic :: Scientific/Engineering - Topic :: Software Development :: Libraries - Topic :: Software Development :: User Interfaces - Topic :: System - Topic :: System :: Distributed Computing - Topic :: System :: Shells - Topic :: Utilities - -[options] -zip_safe = False -include_package_data = True -packages = find_namespace: -package_dir = - cloudmesh = cloudmesh - -[options.find_namespace] -exclude = - tests - deprecated - propose - examples - conda - -[options.install_requires] -psutil -python-dateutil -colorama -humanize -oyaml -pyfiglet -python-hostlist -requests -simplejson -six -tabulate -tqdm -pyyaml - -[options.extras_require] -:platform_system == "Windows" - pywin32 - pyuac - -[options.tests_require] -flake8 -coverage diff --git a/setup.py-old b/setup.py-old deleted file mode 100644 index 819babe..0000000 --- a/setup.py-old +++ /dev/null @@ -1,115 +0,0 @@ -#!/usr/bin/env python -# ----------------------------------------------------------------------- # -# Copyright 2017, Gregor von Laszewski, Indiana University # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); you may # -# not use this file except in compliance with the License. You may obtain # -# a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# -# See the License for the specific language governing permissions and # -# limitations under the License. # -# ------------------------------------------------------------------------# - -import io -import sys - -from setuptools import find_packages, find_namespace_packages, setup - -def readfile(filename): - with io.open(filename, encoding="utf-8") as stream: - return stream.read() - - -# requiers = readfile ('requirements.txt') - -# pytz==2016.10 - -requiers = """ -psutil -python-dateutil -colorama -humanize -oyaml -pyfiglet -python-hostlist -requests -simplejson -six -tabulate -tqdm -pyyaml -pywin32; platform_system == "Windows" -pyuac; platform_system == "Windows" -""".splitlines() - -version = readfile("VERSION").strip() - -with open('README.md') as f: - long_description = f.read() - -NAME = "cloudmesh-common" -DESCRIPTION = "A set of useful APIs for cloudmesh" -AUTHOR = "Gregor von Laszewski" -AUTHOR_EMAIL = "laszewski@gmail.com" -URL = "https://github.com/cloudmesh/cloudmesh-common" - -setup( - name=NAME, - author=AUTHOR, - author_email=AUTHOR_EMAIL, - description=DESCRIPTION, - long_description=long_description, - long_description_content_type="text/markdown", - version=version, - license="Apache 2.0", - url=URL, - packages=find_namespace_packages( - exclude=("tests", - "deprecated", - "propose", - "examples", - "conda"), - include=['cloudmesh']), - package_dir={"cloudmesh": "cloudmesh"}, - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Environment :: Console", - "Environment :: Other Environment", - "Environment :: Plugins", - "Intended Audience :: Information Technology", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", - "Intended Audience :: System Administrators", - "License :: OSI Approved :: Apache Software License", - "Natural Language :: English", - "Operating System :: OS Independent", - "Operating System :: MacOS :: MacOS X", - "Operating System :: POSIX :: Linux", - "Operating System :: Microsoft :: Windows :: Windows 10", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.12", - "Topic :: Internet", - "Topic :: Scientific/Engineering", - "Topic :: Software Development :: Libraries", - "Topic :: Software Development :: User Interfaces", - "Topic :: System", - "Topic :: System :: Distributed Computing", - "Topic :: System :: Shells", - "Topic :: Utilities", - ], - install_requires=requiers, - tests_require=[ - "flake8", - "coverage", - ], - zip_safe=False, - include_package_data=True -) -