-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (65 loc) · 2.38 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
[tool.poetry]
name = "ifoam"
packages = [{ include = "foam" }]
version = "0.13.5"
description = "Python Interface to OpenFOAM Case (Configured Using YAML)"
authors = ["Iydon Liang <liangiydon@gmail.com>", "Qiang Yue <sustc_yq@163.com>"]
keywords = ["OpenFOAM", "YAML"]
readme = "README.md"
license = "GPL-3.0-only"
homepage = "https://github.com/iydon/of.yaml"
repository = "https://github.com/iydon/of.yaml"
include = []
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: User Interfaces",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/iydon/of.yaml/issues"
Changes = "https://github.com/iydon/of.yaml/blob/main/CHANGELOG.md"
Documentation = "https://ifoam.readthedocs.io"
"Template Project" = "https://github.com/iydon/of.yaml-template"
"Tutorial Project" = "https://github.com/iydon/of.yaml-tutorial"
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
PyYAML = "^6.0"
click = { version = "^8.0.3", optional = true }
lark = { version = "^1.1.2", optional = true }
matplotlib = { version = "^3.5.3", optional = true } # matplotlib@3.6 does not currently support python@3.7
nptyping = { version = "^2.5.0", optional = true }
py7zr = { version = "^0.20.2", optional = true }
tomlkit = { version = "^0.11.5", optional = true }
tqdm = { version = "^4.63.1", optional = true }
typing-extensions = { version = "^4.3.0", optional = true }
vtk = { version = "^9.1.0", optional = true }
# https://github.com/python-poetry/poetry/issues/2567
[tool.poetry.extras]
7z = ["py7zr"]
cli = ["click"]
lark = ["lark"]
mpl = ["matplotlib"]
toml = ["tomlkit"]
tqdm = ["tqdm"]
type = ["nptyping", "typing-extensions"]
vtk = ["vtk"]
full = ["py7zr", "click", "lark", "matplotlib", "nptyping", "tomlkit", "tqdm", "typing-extensions", "vtk"]
[tool.poetry.dev-dependencies]
mkdocs-material = "^8.2.9"
mkdocs-static-i18n = "^0.45"
pygments = "^2.12.0"
python-docx = "^0.8.11"
mypy = "^0.971"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# [[tool.poetry.source]]
# name = "aliyun"
# url = "https://mirrors.aliyun.com/pypi/simple/"