-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 747 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 747 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [{ name = "Luca Marchetti" }]
name = "plotter"
description = "A small Python library for plotting beautiful graphs."
version = "0.2.0"
requires-python = ">=3.12"
readme = "README.md"
license = "MIT"
dependencies = ["matplotlib", "numpy", "pydantic>=2.12.5", "pytest>=9.0.2"]
[tool.setuptools.packages.find]
where = ["plotter"]
[tool.setuptools.package-data]
plotter = ["data/*", "data/info/*"]
[tool.pytest.ini_options]
minversion = "9.0"
addopts = "-s -vv -x"
testpaths = ["tests"]
pythonpath = "."
[dependency-groups]
dev = ["ruff>=0.15.2"]
[project.urls]
Repository = "https://github.com/lmarchetti02/plotter"