-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
85 lines (76 loc) · 1.98 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[tool.poetry]
name = "hydrogym"
version = "0.1.2.3"
authors = [
"HydroGym Team"
]
maintainers = [
"Jared Callaham <jared.callaham@gmail.com>",
"Ludger Paehler <paehlerludger@gmail.com>",
"Sam Ahnert <sammahnert@gmail.com",
]
description = "A Reinforcement Learning Benchmarking Environment for Fluid Dynamics"
license = "MIT"
readme = "README.md"
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Physics",
]
documentation = "https://hydrogym.readthedocs.io/"
repository = "https://github.com/dynamicslab/hydrogym"
keywords = [
"Reinforcement Learning",
"Scientific Machine Learning",
"Benchmarking",
"Computational Fluid Dynamics"
]
include = [
{ path = "hydrogym"}
]
[tool.poetry.urls]
issues = "https://github.com/dynamicslab/hydrogym/issues"
[tool.poetry.dependencies]
control = "^0.9.2"
dmsuite = "^0.1.1"
gmsh = "^4.11.1"
gym = "^0.26.2"
python = "^3.10"
torch = "^2.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.6"
yapf = "^0.40.2"
toml = "^0.10.2"
tomli = "^2.0.1"
codespell = "^2.2.6"
pytest = "^8.1.1"
[tool.poetry.group.interactive.dependencies]
jupyterlab = "^3.5.2"
ipykernel = "^6.19.4"
notebook = "^6.5.2"
ipywidgets = "^8.0.4"
mpltools = "^0.2.0"
nbformat = "^5.7.1"
nbconvert = "^7.2.7"
memory-profiler = "^0.61.0"
seaborn = "^0.12.1"
[tool.yapf]
based_on_style = "yapf"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["F401", "E731"]
[tool.codespell]
skip = '*.svg,*.ipynb'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"