-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.14 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 61.0"]
[project]
authors = [
{"name" = "S. John Pennycook", "email" = "[email protected]"},
{"name" = "Jason Sewall"},
{"name" = "Douglas Jacobsen"},
{"name" = "Tom Deakin", "email" = "[email protected]"},
{"name" = "Yuliana Zamora", "email" = "[email protected]"},
{"name" = "Kin Long Kelvin Lee", "email" = "[email protected]"}
]
description = "Performance, Portability and Productivity Analysis Library"
dynamic = ["version", "readme"]
keywords = ["performance", "portability", "productivity"]
name = "p3analysis"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
dependencies = [
"numpy",
"pandas",
"matplotlib>=3.6.3",
"jsonschema",
]
[project.optional-dependencies]
dev = [
"sphinx",
"sphinx-gallery",
"pre-commit",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["p3analysis*"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
version = {attr = "p3analysis.__version__"}