forked from MetOffice/PSyTran
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.36 KB
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
# (C) Crown Copyright 2023, Met Office. All rights reserved.
#
# This file is part of PSyTran and is released under the BSD 3-Clause license.
# See LICENSE in the root of the repository for full licensing details.
[build-system]
requires = ["setuptools"]
[project]
name = "psytran"
version = "0.2"
authors = [
{name = "Joseph G. Wallwork", email = "jw2423@cam.ac.uk"},
{name = "Oakley Brunt"},
{name = "Joseph J. Abram"},
]
maintainers = [
{name = "Joseph G. Wallwork", email = "jw2423@cam.ac.uk"},
{name = "Oakley Brunt"},
]
description = "PSyTran: Tools for automating OpenACC GPU porting efforts using PSyclone"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["psyclone", "gpu", "openacc", "openmp"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
dependencies = [
"dataclasses",
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"parameterized",
"pre-commit",
"pylint",
"pylit",
"pytest",
"pytest-cov",
"sphinx",
]
[project.urls]
Repository = "https://github.com/MetOffice/PSyTran"
[tool.setuptools]
packages = ["psytran"]
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
)/
'''
[tool.pytest.ini_options]
filterwarnings = [
"ignore:`np.bool8` is a deprecated alias for `np.bool_`*:DeprecationWarning",
"ignore:unable to find git revision*:UserWarning",
]