forked from devitocodes/devito
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 2.71 KB
/
pyproject.toml
File metadata and controls
90 lines (81 loc) · 2.71 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = [
"setuptools>=62.6",
"wheel",
"setuptools-scm"
]
build-backend = "setuptools.build_meta"
[project]
name = "devito"
description = "Finite Difference DSL for symbolic computation."
license = { file = "LICENSE.md" }
readme = "README.md"
keywords = ["finite-difference", "DSL", "symbolic", "jit", "devito"]
requires-python = ">=3.9"
authors = [
{ name = "Imperial College London", email = "g.gorman@imperial.ac.uk" },
{ name = "Fabio Luporini", email = "fabio@devitocodes.com" },
{ name = "Mathias Louboutin", email = "mathias@devitocodes.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers"
]
maintainers = [
{ name = "Fabio Luporini", email = "fabio@devitocodes.com" },
{ name = "Mathias Louboutin", email = "mathias@devitocodes.com" },
{ name = "Gerard Gorman", email = "gerard@devitocodes.com" },
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
Documentation = "https://www.devitoproject.org/devito/index.html"
Repository = "https://github.com/devitocodes/devito"
Issues = "https://github.com/devitocodes/devito/issues"
[tool.setuptools.dynamic]
# Read install_requires from requirements.txt
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.dynamic.optional-dependencies]
# Map each extra to its requirements-*.txt
mpi = { file = ["requirements-mpi.txt"] }
nvidia = { file = ["requirements-nvidia.txt"] }
tests = { file = ["requirements-testing.txt"] }
extras = { file = ["requirements-optional.txt"] }
[tool.setuptools.packages.find]
where = ["."]
exclude = ["docs", "tests", "examples"]
[tool.setuptools_scm]
fallback_version = "0+untagged"
[tool.flake8]
max-line-length = 90
ignore = [
"F403","E226","E731","E275",
"W503","F405","E722","E741",
"W504","W605"
]
exclude = [ ".github" ]
[tool.flake8.nb]
max-line-length = 90
ignore = [
"F403","E226","E731","E275",
"W503","F405","E722","E741",
"W504","W605"
]
exclude = [ ".github" ]