forked from LLNL/hatchet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (47 loc) · 878 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools", "wheel", "Cython"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "llnl-hatchet"
version = "2024.1.2"
description = "A Python library for analyzing hierarchical performance data."
authors = [
"Abhinav Bhatele <[email protected]>",
"Stephanie Brink <[email protected]>",
"Todd Gamblin <[email protected]>",
]
license = "MIT"
[tool.ruff]
line-length = 88
target-version = 'py39'
include = ['\.pyi?$']
exclude = [
".eggs",
".git",
".hg",
".mypy_cache",
".tox",
".venv",
"_build",
"buck-out",
"build",
"dist",
]
[tool.black]
line-length = 88
target-version = ['py35', 'py36', 'py37', 'py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''