forked from ROCm/timemory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (40 loc) · 708 Bytes
/
pyproject.toml
File metadata and controls
42 lines (40 loc) · 708 Bytes
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
[build-system]
requires = [
"setuptools >= 40.0.4",
"setuptools_scm >= 2.0.0",
"wheel >= 0.29.0",
"scikit-build >= 0.8.0",
"cython",
]
build-backend = 'setuptools.build_meta'
[tool.black]
line-length = 80
target-version = ['py37']
include = '\.pyi?'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.misc
| _build
| __pycache__
| _skbuild
| build
| build-timemory
| dist
| external
| scripts
| spack
| docker
| docs
| hatchet
| .pytest_cache
)/
| cmake/Templates/console-script.py.in
)
'''