mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
22 lines
461 B
TOML
22 lines
461 B
TOML
[build-system]
|
|
requires = ["pdm-pep517>=1.0"]
|
|
build-backend = "pdm.pep517.api"
|
|
|
|
[project]
|
|
name = "viv"
|
|
description = "viv isn't venv"
|
|
authors = [{ name = "Daylin Morgan", email = "daylinmorgan@gmail.com" }]
|
|
dependencies = []
|
|
requires-python = ">= 3.7"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
dynamic = ["version"]
|
|
|
|
[project.scripts]
|
|
viv = "viv.viv:main"
|
|
|
|
[tool.pdm]
|
|
version = { source = "scm" }
|
|
|
|
[tool.pdm.dev-dependencies]
|
|
dev = ["pre-commit>=2.20.0"]
|