-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.14 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "drawarrow"
version = "0.1.0"
description = "Drawing arrows for matplotlib made easy."
authors = [
{ name="Joseph Barbier", email="joseph.barbierdarnal@gmail.com" },
]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Framework :: Matplotlib"
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"matplotlib",
]
[dependency-groups]
dev = [
"mkdocs-material>=9.6.9",
"mkdocs-matplotlib>=0.10.1",
"mkdocstrings-python>=1.16.5",
"pre-commit>=4.1.0",
"pytest>=8.3.5",
"ruff>=0.11.0",
"setuptools>=76.1.0",
"genbadge[all]>=1.1.2",
"ty>=0.0.1a14",
"coverage>=7.9.2",
]
[build-system]
requires = [
"setuptools",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["drawarrow"]
[tool.uv.sources]
drawarrow = { workspace = true }
[tool.ty.src]
include = ["drawarrow"]
exclude = ["tests", "sandbox.py", "docs"]
[project.urls]
Homepage = "https://github.com/JosephBARBIERDARNAL/drawarrow"
Issues = "https://github.com/JosephBARBIERDARNAL/drawarrow/issues"