From 87239f15018d38ac3362857f0a8c2add15092b14 Mon Sep 17 00:00:00 2001 From: kolo Date: Thu, 13 Feb 2025 19:29:58 +0300 Subject: [PATCH] v0.2.2 --- .gitignore | 1 + pyproject.toml | 2 +- setup.py | 23 ----------------------- 3 files changed, 2 insertions(+), 24 deletions(-) delete mode 100644 setup.py diff --git a/.gitignore b/.gitignore index 3ff719f..48c0136 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ argenta/router/__pycache__/ argenta/app/__pycache__/ argenta/__pycache__/ dist +poetry.lock tests/__pycache__ tests/mock_default_app/handlers/__pycache__/ tests/mock_default_app/__pycache__/ diff --git a/pyproject.toml b/pyproject.toml index 21f22ec..524a3cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "argenta" -version = "0.2.1" +version = "0.2.2" description = "python library for creating cli apps" authors = [ {name = "kolo",email = "kolo.is.main@gmail.com"} diff --git a/setup.py b/setup.py deleted file mode 100644 index 1d90347..0000000 --- a/setup.py +++ /dev/null @@ -1,23 +0,0 @@ -from setuptools import setup, find_packages - -with open("README.md", "r", encoding="utf-8") as fh: - long_description = fh.read() - -setup( - name="argenta", - version="0.2.1", - author="kolo", - author_email="kolo.is.main@gmail.com", - description="Python library for creating CLI apps", - long_description=long_description, - long_description_content_type="text/markdown", - packages=find_packages(), - install_requires=[ - "requests", - ], - classifiers=[ - "Programming Language :: Python :: 3", - "Operating System :: OS Independent", - ], - python_requires='>=3.11', -) \ No newline at end of file