From 90b222e46f74d0d09d35baf9427d313b6146704d Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 10:47:57 +0000 Subject: [PATCH] Initial commit: ConfigForge v1.0.0 --- setup.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..860a9bc --- /dev/null +++ b/setup.py @@ -0,0 +1,34 @@ +from setuptools import setup, find_packages + +setup( + name="configforge", + version="1.0.0", + description="A CLI tool for validating, converting, and generating schemas for configuration files", + author="ConfigForge Contributors", + author_email="", + url="https://github.com/configforge/configforge", + packages=find_packages(exclude=["tests*"]), + python_requires=">=3.8", + install_requires=[ + "pyyaml>=6.0", + "tomlkit>=0.12.0", + "jsonschema>=4.17.0", + "click>=8.1.0", + ], + entry_points={ + "console_scripts": [ + "configforge=configforge.cli:main", + ], + }, + classifiers=[ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + ], +)