mirror of
https://github.com/tomasriveral/Hairloss-report.git
synced 2026-08-11 18:38:37 +02:00
23 lines
371 B
TOML
23 lines
371 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "hairloss"
|
|
version = "0.1"
|
|
description = "Hairloss graph over time."
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"tinydb",
|
|
"requests",
|
|
"matplotlib",
|
|
"numpy",
|
|
"scipy"
|
|
]
|
|
|
|
[project.scripts]
|
|
hairloss = "hairloss.main:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["hairloss"]
|