sequences/pyproject.toml

32 lines
679 B
TOML
Raw Permalink Normal View History

2023-11-23 16:19:43 +00:00
[build-system]
requires = ["setuptools >= 61", "wheel"]
build-backend = "setuptools.build_meta" # hatch, pbm, poetry, flit, ...
[project]
name = "sequences"
description = "Implementation of fib."
readme = "README.md"
license = {text = "MIT License"}
authors = [
{name = "Julien Palard", email = "julien@palard.fr"},
]
requires-python = ">= 3.7"
2023-11-24 09:24:08 +00:00
dependencies = []
2023-11-23 16:19:43 +00:00
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/JulienPalard/sequences"
[project.scripts]
fib = "sequences.sequences:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic.version]
attr = "sequences.__version__"
2023-11-24 09:24:08 +00:00
[tool.black]