-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
70 lines (62 loc) · 1.5 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
69
70
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "perprof-py"
authors = [
{name = "Abel Soares Siqueira", email = "[email protected]"},
{name = "Raniere Gaia Costa da Silva", email = "[email protected]"},
{name = "Luiz Rafael dos Santos", email = "[email protected]"},
]
description = "A python module for performance profiling (as described by Dolan and Moré)"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["benchmark", "comparison", "performance profile"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python"
]
dependencies = [
"pyyaml>=5,<7",
"matplotlib>=3,<4",
"bokeh>=2,<3",
"pandas>=1,<2",
]
version = "1.1.4"
[project.optional-dependencies]
dev = [
"black",
"pre-commit",
"prospector[with_pyroma]",
"pylint",
"pytest",
"pytest-cov",
]
publishing = [
"build",
"twine",
]
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
"mike",
]
[project.scripts]
perprof = "perprof.main:main"
[project.urls]
repository = "https://github.com/abelsiqueira/perprof-py"
documentation = "https://perprof-py.readthedocs.org/en/latest/"
[tool.isort]
lines_after_impots = 2
force_single_line = 1
src_paths = "bird_cloud_gnn,tests"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.packages.find]
where = ["."]
include = ["perprof*"]
exclude = ["docker", "tests*"]
namespaces = false
[tool.setuptools.package-data]
perprof = ["locale/*/*/*.mo", "examples/*.table"]