-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (50 loc) · 1.36 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
55
56
57
58
[project]
name = "flyplotlib"
version = "0.8.0"
description = "Add vector graphics of fruit flies and leg muscles to matplotlib plots."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "tkclam", email = "thomas.lam@epfl.ch" }]
requires-python = ">=3.10"
keywords = ["matplotlib", "drosophila", "fly", "neuroscience", "visualization"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Matplotlib",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"matplotlib",
"numpy",
"shapely>=2.0",
"svg2mpl>=0.1.0",
]
[project.optional-dependencies]
examples = ["distinctipy"]
[project.urls]
Repository = "https://github.com/tkclam/flyplotlib"
Issues = "https://github.com/tkclam/flyplotlib/issues"
[build-system]
requires = ["uv_build>=0.11,<0.12"]
build-backend = "uv_build"
[tool.uv.build-backend]
# Default src layout: the package lives at src/flyplotlib. Ship the SVG data
# with the wheel and the tests with the sdist.
source-include = ["tests/**"]
[dependency-groups]
dev = [
"ipykernel",
"pre-commit",
"pytest",
"ruff",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 88
src = ["src", "tests"]
[tool.ruff.lint]
extend-select = ["I", "UP", "B"]