forked from flexcompute/Flow360
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.61 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
[tool.poetry]
name = "flow360"
version = "v0.2.0"
description = ""
authors = ["Flexcompute <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
pydantic = "^1.10.0"
pytest = "^7.1.2"
click = "^8.1.3"
toml = "^0.10.2"
requests = "^2.28.1"
boto3 = "^1.24.63"
numpy = [{ python = "^3.7", version = "^1.19.0" },
{ python = "^3.8", version = "^1.20.0" },
{ python = "^3.9", version = "^1.23.0" },
{ python = "^3.12", version = "^1.26.0" }]
matplotlib = [{ python = "^3.7", version = "^3.5.3" },
{ python = "^3.8", version = "^3.6.2" },
{ python = "^3.9", version = "^3.6.2" },
{ python = "^3.10", version = "^3.6.2" }]
pyyaml = "^6.0.1"
rich = "^13.3.4"
h5py = "^3.10.0"
zstandard = "^0.21.0"
unyt = [{ python = "^3.7", version = "^2.8.0" },
{ python = "^3.8", version = "^2.9.5" }]
pandas = "^2.2.1"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.20.3"
pytest-cov = "^4.0.0"
autohooks = "^23.4.0"
autohooks-plugin-black = "^22.11.0"
autohooks-plugin-isort = "^22.8.0"
autohooks-plugin-pylint = "^22.8.1"
pytest = "^7.3.0"
pylint = "^2.17.2"
black = "^24.1.0"
notebook = "^7.0.6"
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
target-version = ["py37", "py38", "py39", "py310", "py311"]
exclude = '''
/(
\.git
)/
'''
[tool.autohooks]
mode = "poetry"
pre-commit = ["autohooks.plugins.black", "autohooks.plugins.isort", "autohooks.plugins.pylint"]
[tool.autohooks.plugins.pylint]
arguments = ["--rcfile=.pylintrc"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
flow360 = "flow360.cli:flow360"