45 lines
819 B
TOML
45 lines
819 B
TOML
|
|
[project]
|
|
name = "jo3util"
|
|
version = "0.0.6"
|
|
description = ""
|
|
dependencies = []
|
|
dynamic = ["readme"]
|
|
requires-python = ">=3.11"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[git]
|
|
github = "JJJHolscher"
|
|
|
|
[project.urls]
|
|
homepage = "https://github.com/JJJHolscher/jo3util"
|
|
|
|
[[project.authors]]
|
|
name = "Jochem Hölscher"
|
|
email = "a.fake@e.mail"
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools>=61.0",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["jo3util"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
readme = {file = ["README.md"], content-type = "text/markdown"}
|
|
|
|
[tool.jupytext]
|
|
formats = "ipynb,py"
|
|
|
|
[tool.pyright]
|
|
exclude = ".venv"
|
|
venvPath = "."
|
|
venv = ".venv"
|
|
reportMissingImports = false
|