24 lines
484 B
TOML
24 lines
484 B
TOML
|
[project]
|
||
|
name = "rye"
|
||
|
version = "0.1.0"
|
||
|
description = "Add your description here"
|
||
|
authors = [
|
||
|
{ name = "slashtechno", email = "77907286+slashtechno@users.noreply.github.com" }
|
||
|
]
|
||
|
dependencies = []
|
||
|
readme = "README.md"
|
||
|
requires-python = ">= 3.10"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["hatchling"]
|
||
|
build-backend = "hatchling.build"
|
||
|
|
||
|
[tool.rye]
|
||
|
managed = true
|
||
|
dev-dependencies = []
|
||
|
|
||
|
[tool.hatch.metadata]
|
||
|
allow-direct-references = true
|
||
|
|
||
|
[tool.hatch.build.targets.wheel]
|
||
|
packages = ["src/rye"]
|