generated from LLNL/RAJA-project-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
48 lines (42 loc) · 1005 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
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ats"
authors = ["Shawn A. Dawson <[email protected]>"]
description = "Automated Testing System"
documentation = "https://ats.readthedocs.io/en/latest"
packages = [
{ include = "ats" }
]
license = "BSD-3-Clause"
publish = false
readme = "README.md"
repository = "https://github.com/LLNL/ATS"
version = "7.0.117"
[tool.poetry.dependencies]
python = ">=3.8"
numpy = "^1.18"
[tool.poetry.dev-dependencies]
black = ">=22.6"
isort = ">=5.10"
[tool.poetry.scripts]
ats = "ats.__main__:main"
ats3 = "ats.tools.ats_summary:main"
atsflux = "ats.tools.atsflux:main"
atsformat = "ats.tools.atsformat:main"
atslite1 = "ats.tools.atslite1:main"
atslite3 = "ats.tools.atslite3:main"
[tool.black]
line-length = 80
target-version = ['py38']
extend-exclude = '''
/(
# Use ats/bin/atsformat to format ats/atsMachines
| ats/atsMachines/
| ats/bin/
| scripts/
)/
'''
[tool.isort]
profile = "black"