From 57258bbbbde5cfc3c7caeaf3c459ff770fe1a9b2 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 10:44:33 +0000 Subject: [PATCH] Initial upload: curl-converter-cli with CI/CD workflow --- setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..fb19d0c --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +from setuptools import setup, find_packages + +setup( + name="curlconverter", + version="0.1.0", + packages=find_packages(), + install_requires=[ + "click>=8.0", + "requests>=2.28", + "pyyaml>=6.0", + ], + entry_points={ + "console_scripts": [ + "curlconverter=curlconverter.cli:cli", + ], + }, + python_requires=">=3.9", +)