From 08a04628bc99540d672bb606fcb29da18b263685 Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Wed, 17 May 2023 22:37:04 +0300 Subject: [PATCH] Bump version to 0.14.11 --- pyproject.toml | 2 +- setup.py | 28 ---------------------------- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 setup.py diff --git a/pyproject.toml b/pyproject.toml index 8e6354e..6250f6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "hm_pyhelper" -version = "0.14.10" +version = "0.14.11" description = "Helium Python Helper" authors = ["Nebra Ltd "] readme = "README.md" diff --git a/setup.py b/setup.py deleted file mode 100644 index d5f20bf..0000000 --- a/setup.py +++ /dev/null @@ -1,28 +0,0 @@ -from setuptools import setup, find_packages -import os - -# allow setup.py to be run from any path -here = os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)) -os.chdir(here) - -requires = [ - line.strip() - for line in open(os.path.join(here, "requirements.txt"), "r").readlines() -] - -setup( - name='hm_pyhelper', - version='0.14.10', - author="Nebra Ltd", - author_email="support@nebra.com", - description="Helium Python Helper", - long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(), - long_description_content_type="text/markdown", - url="https://github.com/NebraLtd/hm-pyhelper", - install_requires=requires, - project_urls={ - "Bug Tracker": "https://github.com/NebraLtd/hm-pyhelper/issues", - }, - packages=find_packages(), - include_package_data=True -)