mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
- Changed all links from github.com/NomenAK/SuperClaude to github.com/SuperClaude-Org/SuperClaude_Framework
62 lines
1.6 KiB
TOML
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",
|
|
]
|
|
|