-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (59 loc) · 1.27 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools"]
[project]
name = "UM2N"
version = "1.0"
authors = [
{name = "Chunyang Wang"},
{name = "Mingrui Zhang"},
{name = "Stephan C. Kramer"},
{name = "Joseph G. Wallwork"},
]
maintainers = [] # TODO: Who will be the maintainers?
description="PDE mesh r-adaptation tool"
readme = "README.md"
# TODO: license = {file = "LICENSE"}
keywords = ["python", "meshing", "machine-learning", "firedrake"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
dependencies = [
"einops",
"gmsh",
"jupyter",
"ipython",
"matplotlib",
"numpy",
"pandas",
"rich",
"seaborn",
# "torch", # NOTE: Should be installed beforehand
"torch_geometric",
"wandb",
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
]
[project.urls]
Homepage = "https://erizmr.github.io/UM2N"
# TODO: Documentation
Repository = "https://github.com/erizmr/UM2N"
[tool.setuptools]
packages = ["UM2N"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = [
"E", "W", # Pycodestyle
"F", # Pyflakes
"I", # Isort
]
ignore = [
"E501", # line too long
"E402", # module level import not at top of file
"F403", # unable to detect undefined names
"F405", # name may be undefined, or defined from star imports
]