mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
23 lines
617 B
Python
23 lines
617 B
Python
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.1.2",
|
|
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',
|
|
) |