forked from pythonspeed/profila
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (28 loc) · 849 Bytes
/
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
[project]
name = "profila"
description = "A profiler for Numba"
readme = "README.md"
requires-python = ">=3.9"
authors = [{name = "Itamar Turner-Trauring"}]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"pygdbmi"
]
dynamic = ["version"]
[build-system]
requires = ["setuptools>60", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/pythonspeed/profila"
Issues = "https://github.com/pythonspeed/profila/issues"
CI = "https://github.com/pythonspeed/profila/actions"
[project.optional-dependencies]
test = ["pytest", "ruff", "numba", "mypy", "hypothesis", "syrupy", "nbconvert", "ipykernel"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]