Some checks failed
Publish / publish (push) Failing after 0s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
34 lines
1,017 B
TOML
34 lines
1,017 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lilith-ruff-config"
|
|
version = "1.1.0"
|
|
description = "Shared Ruff linting and formatting configuration"
|
|
requires-python = ">=3.10"
|
|
license = "MIT"
|
|
authors = [{ name = "Lilith Platform", email = "quinn@ftw.codes" }]
|
|
keywords = ["ruff", "linting", "formatting", "config"]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Software Development :: Quality Assurance",
|
|
]
|
|
readme = "README.md"
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["build>=1.0.0", "twine>=5.0.0"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/lilith_ruff_config"]
|
|
|
|
[tool.lilith]
|
|
registry = "forgejo"
|
|
publish = true
|