-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
80 lines (71 loc) · 2.01 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
[tool.poetry]
name = "simfire"
version = "2.0.1"
description = "Fire simulator built in Python"
authors = ["Tim Welsh <twelsh@mitre.org>", "Marissa Dotter <mdotter@mitre.org>",
"Michael Doyle <mdoyle@mitre.org>", "Dhanuj Gandikota <dgandikota@mitre.org>",
"Chris Kempis <ckempis@mitre.org>", "Lauren Schambach <lschambach@mitre.org>",
"Alex Tapley <atapley@mitre.org>", "Michael Threet <mthreet@mitre.org>"]
readme = "README.md"
include = ["simfire/utils/textures/terrain.jpg", "simfire/utils/assets/fireline_logo.png"]
keywords = ["python", "reinforcement learning", "simulation", "fire"]
documentation = "https://mitrefireline.github.io/simfire/"
repository = "https://github.com/mitrefireline/simfire"
[tool.poetry.dependencies]
python = "~3.9"
matplotlib = "^3.5.2"
noise = "^1.2.2"
numpy = "^1.22.4"
Pillow = ">=9.1.1,<11.0.0"
pygame = "^2.1.2"
PyYAML = "^6.0"
reportlab = "^3.6.10"
scikit-image = "^0.19.3"
svglib = "^1.3.0"
rich = "^12.5.1"
wurlitzer = "^3.0.2"
h5py = "^3.7.0"
jsonlines = "^3.1.0"
opencv-python = "^4.7.0.72"
imagecodecs = "^2023.7.10"
landfire = "^0.5.0"
geotiff = "^0.2.10"
geopandas = "^0.14.4"
geopy = "^2.4.1"
[tool.poetry.group.coverage.dependencies]
pytest-cov = "^3.0.0"
[tool.poetry.group.docs.dependencies]
Sphinx = "^5.0.2"
sphinx-autoapi = "^1.8.4"
sphinx-rtd-theme = "^1.0.0"
myst-parser = "^0.18.0"
furo = "^2022.6.4.1"
sphinxext-opengraph = "^0.9.0"
sphinx-copybutton = "^0.5.2"
[tool.poetry.group.dev.dependencies]
black = ">=22.3,<25.0"
certifi = ">=2022.6.15,<2025.0.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
pre-commit = "^2.19.0"
pytest = "^7.1.2"
bandit = "^1.7.4"
types-setuptools = "^65.3.0"
no-implicit-optional = "^1.0"
mypy = "0.991"
[tool.black]
line-length = 90
target-version = ['py39']
[tool.mypy]
ignore_missing_imports = true
allow_redefinition = true
exclude = [
'/_tests/',
'^generate_cfd_wind_layer\.py$',
'tests/'
]
[tool.bandit]
skips = ["B101", "B311"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"