BS 0.1.0 开始构建Config内容

This commit is contained in:
2025-07-09 00:01:38 +08:00
parent 6a9687a934
commit 776a4d9152
16 changed files with 1394 additions and 0 deletions

24
setup.py Normal file
View File

@@ -0,0 +1,24 @@
from setuptools import setup, find_packages
import io
setup(
name="Convention",
version="0.1.0",
author="LiuBai",
description="A python version code repository for implementing the agreements and implementations in the Convention-Template.",
long_description=io.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/NINEMINEsigma/Convention-Python",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.12",
install_requires=[
"colorama",
"pydantic"
],
exclude_package_data={"": ["*.meta"]},
)