Files
SuperClaude/pyproject.toml
Joevidev c05ce38159 feat: Add uv for faster and more efficient package management (#156)
* refactor: pyproject.toml to use Hatchling as the build backend and update project metadata

- Changed build backend from setuptools to hatchling.
- Updated project name, description, authors, and dependencies.
- Added project URLs and scripts section for SuperClaude.
- Configured versioning and build targets for wheel and sdist.

* feat: Update installation instructions in README.md to reflect new package management commands using 'uv' instead of 'pip'.

* feat: Add uv.lock file to manage package dependencies and versions for SuperClaude

* fix: Update library usage guidelines in RULES.md to reference pyproject.toml instead of requirements.txt
2025-07-17 12:45:40 +02: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/NomenAK/SuperClaude"
Repository = "https://github.com/NomenAK/SuperClaude"
"Bug Tracker" = "https://github.com/NomenAK/SuperClaude/issues"
"GitHub" = "https://github.com/NomenAK/SuperClaude"
"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",
]