cek / pyproject.toml
praiteri's picture
Raman fitting added
80d8563
raw
history blame contribute delete
699 Bytes
[build-system]
requires = ["setuptools >= 61.0", "wheel", "numpy"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "pycek_public"
version = "1.0.0"
requires-python = ">= 3.8"
authors = [
{name = "Paolo Raiteri", email = "p.raiteri@curtin.edu.au"},
]
description = "read and write coordinates"
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = [
"numpy",
"scipy",
"lmfit",
"colorama",
"matplotlib",
"marimo",
"fastapi",
"altair",
"pandas",
]
[project.optional-dependencies]
dev = [
"black",
"mypy",
"pylint",
"alive-progress",
]