-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (66 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
71 lines (66 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "grimp._rustgrimp"
[project]
name = "grimp"
version = "3.14"
license = {text = "BSD 2-Clause License"}
description = "Builds a queryable graph of the imports within one or more Python packages."
authors = [
{name = "David Seddon", email = "david@seddonym.me"},
]
requires-python = ">=3.10"
dependencies = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Rust",
"Topic :: Utilities",
]
readme = "README.rst"
[project.urls]
Documentation = "https://grimp.readthedocs.io/"
Source-code = "https://github.com/python-grimp/grimp/"
[dependency-groups]
dev = [
"import-linter>=2.5",
"mypy>=1.18.2",
"pre-commit>=4.3.0",
"pytest>=8.4.2",
"pytest-benchmark>=5.1.0",
"pytest-stub>=1.1.0",
"pyyaml>=6.0.3",
"ruff>=0.14.0",
"syrupy>=4.9.1",
"types-pyyaml>=6.0.12.20250915",
# External packages to attempt to build the graph from.
# If the versions change, the snapshot tests will fail, and the benchmarks will change.
"Django==4.2.17", # N.B. Django 5 doesn't support Python 3.9.
"flask==3.0.3",
"requests==2.32.3",
"sqlalchemy==2.0.35",
"google-cloud-audit-log==0.3.0",
]
docs = [
"sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2",
]
benchmark_ci = [
"pytest-codspeed>=4.2.0",
]
[tool.pytest.ini_options]
xfail_strict = true