-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (76 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (76 loc) · 1.48 KB
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
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "NREL-jade"
dynamic = ["version"]
description = "Provides HPC workflow automation services"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
maintainers = [
{ name = "Daniel Thom", email = "daniel.thom@nrel.gov" },
]
keywords = [
"hpc",
"jade",
"workflow",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"click",
"filelock",
"numpy",
"pandas",
"plotly",
"prettytable",
"psutil",
"pyarrow",
"pydantic>=2,<3",
"requests",
"tabulate",
"toml>=0.10.0",
]
[project.optional-dependencies]
dataframe_utils = [
"tables",
]
demo = [
"matplotlib",
"statsmodels",
]
dev = [
"black",
"flake8",
"ghp-import",
"matplotlib",
"mock>=3.0.0",
"pre-commit",
"pycodestyle",
"pylint",
"pypandoc",
"pytest",
"pytest-cov",
"sphinx-rtd-theme>=0.4.3",
"sphinx>=2.0",
"sphinxcontrib-plantuml",
"statsmodels",
"tox",
]
[project.scripts]
jade = "jade.cli.jade:cli"
jade-internal = "jade.cli.jade_internal:cli"
[project.urls]
Homepage = "https://github.com./NREL/jade"
[tool.hatch.version]
path = "jade/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["jade"]
[tool.black]
line-length = 99
target-version = ['py38']