Files
SuperClaude/pyproject.toml
developerjhp df01c52b88 fix: Update all GitHub URLs to correct repository location
- Changed all links from github.com/NomenAK/SuperClaude to github.com/SuperClaude-Org/SuperClaude_Framework
2025-07-31 11:04:54 +09:00

62 lines
1.6 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "SuperClaude"
dynamic = ["version"]
description = "SuperClaude Framework Management Hub"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Mithun Gowda B", email = "contact@superclaude.dev"},
{name = "NomenAK", email = "contact@superclaude.dev"},
]
requires-python = ">=3.8"
dependencies = [
"setuptools>=45.0.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
]
[project.urls]
Homepage = "https://github.com/SuperClaude-Org/SuperClaude_Framework"
Repository = "https://github.com/SuperClaude-Org/SuperClaude_Framework"
"Bug Tracker" = "https://github.com/SuperClaude-Org/SuperClaude_Framework/issues"
"GitHub" = "https://github.com/SuperClaude-Org/SuperClaude_Framework"
"Mithun Gowda B" = "https://github.com/mithun50"
"NomenAK" = "https://github.com/NomenAK"
[project.scripts]
SuperClaude = "SuperClaude.__main__:main"
[tool.hatch.version]
path = "VERSION"
pattern = "(?P<version>.*)"
[tool.hatch.build.targets.wheel]
packages = ["SuperClaude"]
[tool.hatch.build.targets.sdist]
include = [
"SuperClaude/",
"config/",
"profiles/",
"setup/",
"VERSION",
"README.md",
"LICENSE",
"MANIFEST.in",
]