This commit is contained in:
2025-02-13 19:29:58 +03:00
parent 48c117dd72
commit 87239f1501
3 changed files with 2 additions and 24 deletions
+1
View File
@@ -4,6 +4,7 @@ argenta/router/__pycache__/
argenta/app/__pycache__/ argenta/app/__pycache__/
argenta/__pycache__/ argenta/__pycache__/
dist dist
poetry.lock
tests/__pycache__ tests/__pycache__
tests/mock_default_app/handlers/__pycache__/ tests/mock_default_app/handlers/__pycache__/
tests/mock_default_app/__pycache__/ tests/mock_default_app/__pycache__/
+1 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "argenta" name = "argenta"
version = "0.2.1" version = "0.2.2"
description = "python library for creating cli apps" description = "python library for creating cli apps"
authors = [ authors = [
{name = "kolo",email = "kolo.is.main@gmail.com"} {name = "kolo",email = "kolo.is.main@gmail.com"}
-23
View File
@@ -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',
)