Spaces:
Running
Running
File size: 699 Bytes
843a502 1ffa54d 843a502 1ffa54d 79484be 843a502 1ffa54d 80d8563 843a502 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | [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",
]
|