forked from intel/p3-analysis-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (62 loc) · 1.52 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
58
59
60
61
62
63
64
65
66
67
68
[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 = "p3"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
dependencies = [
"numpy",
"pandas",
"matplotlib>=3.6.3",
"jsonschema",
]
[project.optional-dependencies]
dev = [
"black>=22.3.0",
"sphinx",
"sphinx-gallery",
"flake8",
"flake8-pyproject",
"flake8-black",
"flake8-bandit",
"pre-commit",
"bandit"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["p3*"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
version = {attr = "p3.__version__"}
[tool.flake8]
max-line-length = 79
ignore = ["E203", "W503"]
exclude = [
"docs/source/conf.py",
"examples",
"case-studies",
"tests"
]
per-file-ignores = [
"p3/__init__.py:F401",
]
[tool.black]
line-length = 79
extend-exclude = "docs|examples|case-studies|tests"