-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
42 lines (38 loc) · 1 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
[tool.poetry]
name = "ruleset-checking-tool"
version = "0.2.8"
description = "PNNL ruleset checking tool"
authors = ["Weili Xu <[email protected]>", "Charlie Holly <[email protected]>", "Juan Gonzalez <[email protected]>", "Yun Joon Jung <[email protected]>", "Jiarong Xie <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "rct229"}]
[tool.poetry.dependencies]
python = "^3.10"
jsonschema = "^4.21.1"
PyYAML = "^6.0.1"
jsonpointer = "^2.4"
pandas = "^2.2.1"
xlrd = "^1.2"
numpy = "^1.26.4"
Pint = "^0.23"
click = "^8.0.4"
regex = "^2022.1.18"
black = "^22.6.0"
jsonpath2 = "^0.4.5"
jsonpath-ng = "^1.6.1"
pyinstrument = "^4.6.2"
pydash = "^7.0.7"
openpyxl = "^3.1.2"
[tool.poetry.group.dev.dependencies]
black = "^22.6.0"
pylint = "^3.1.0"
pytest = "^8.0.2"
isort = "^5.10.1"
icecream = "^2.1.3"
pytest-cov = "^4.1.0"
pytest-watch = "^4.2.0"
[tool.poetry.scripts]
rct229 = 'rct229.cli:cli'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"