-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·66 lines (60 loc) · 1.42 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "uh2sc"
version = "0.0.0"
authors = [
{ name="Daniel L. Villa", email="[email protected]" },
]
dependencies = [
"Cython",
"numpy",
"scipy",
"CoolProp",
"cerberus",
"pandas",
"pyyaml",
"rich-click"
]
description = "This package simulates salt caverns with hydrogen and other gas mixtures"
readme = "README.md"
requires-python = ">3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Revised BSD License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
test = [
"pytest",
"matplotlib",
"py-pde"
]
docs = [
"sphinx"
]
[project.scripts]
uh2sc = "uh2sc.main:cli"
[project.urls]
Homepage = "https://github.com/sandialabs/uh2sc"
Issues = "https://github.com/sandialabs/uh2sc/issues"
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"too-many-instance-attributes",
"too-many-return-statements",
"too-few-public-methods",
"too-many-branches",
"too-many-arguments",
"too-many-statements",
"too-many-locals",
"import-error",
"duplicate-code",
"no-name-in-module"
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
version = {attr = "uh2sc.__init__.__version__"}