-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.1 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jetplot"
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.19",
"scipy",
"matplotlib",
"scikit-learn>=1.0.2",
]
authors = [
{name = "Niru Maheswaranathan", email="niru@hey.com"},
]
description = "jetplot is collection of miscellaneous utils for Matplotlib."
readme = "README.md"
license = "MIT"
[project.urls]
Homepage = "https://github.com/nirum/jetplot"
[project.optional-dependencies]
dev = [
"matplotlib-stubs>=0.1.0",
"pyrefly>=0.14.0",
"pytest>=7.4.4",
"pytest-cov>=4.1.0",
"ruff>=0.11.10",
"scipy-stubs>=1.15.3.0",
]
docs = [
"mkdocs>=1.5.3",
"mkdocs-material>=9.2.7",
"mkdocstrings[python]>=0.22.0",
]
[tool.pyrefly]
python_version = "3.12"
search_path = ["src"]
project_includes = ["src/**"]
project_excludes = ["**/.[!/.]*", "**/*venv/**/*", "build/**/*"]
[tool.ruff]
lint.extend-ignore = ["E111", "E114", "E501", "F403"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {attr = "jetplot.__version__"}