-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.51 KB
/
pyproject.toml
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
[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.5"
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 = "[email protected]"},
]
requires-python = ">=3.9"
dependencies = [
"typing-extensions>=3.10.0.0",
]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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/seddonym/grimp/"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
grimp = ["py.typed"]
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.black]
line-length = 99
exclude = 'tests/assets/syntaxerrorpackage'