mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
Added PyPI v3 setup and readme updates
This commit is contained in:
40
setup.py
Normal file
40
setup.py
Normal file
@@ -0,0 +1,40 @@
|
||||
import setuptools
|
||||
|
||||
with open("README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
with open("VERSION", "r") as f:
|
||||
version = f.read().strip()
|
||||
|
||||
setuptools.setup(
|
||||
name="SuperClaude",
|
||||
version=version,
|
||||
author="Mithun Gowda B, NomenAK",
|
||||
author_email="contact@superclaude.dev",
|
||||
description="SuperClaude Framework Management Hub",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/NomenAK/SuperClaude",
|
||||
packages=setuptools.find_packages(),
|
||||
include_package_data=True,
|
||||
install_requires=["setuptools"],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"SuperClaude=SuperClaude.__main__:main",
|
||||
],
|
||||
},
|
||||
python_requires=">=3.6",
|
||||
project_urls={
|
||||
"GitHub": "https://github.com/NomenAK/SuperClaude",
|
||||
"Mithun Gowda B": "https://github.com/mithun50",
|
||||
"NomenAK": "https://github.com/NomenAK",
|
||||
"Bug Tracker": "https://github.com/NomenAK/SuperClaude/issues",
|
||||
},
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"Operating System :: OS Independent",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Development Status :: 4 - Beta",
|
||||
"Intended Audience :: Developers",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user