-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
39 lines (35 loc) · 1.2 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "hyram"
authors = [
{name = "Brian D. Ehrhart"},
{name = "Cianan Sims"},
{name = "Ethan S. Hecht"},
{name = "Benjamin B. Schroeder"},
{name = "Benjamin R. Liu"},
{name = "Katrina M. Groth"},
{name = "John T. Reynolds"},
{name = "Gregory W. Walkup"}
]
description = "Hydrogen Plus Other Alternative Fuels Risk Assessment Models Python Package"
readme = "./src/hyram/README.md"
requires-python = ">3.6, <3.11"
keywords = ["hydrogen", "methane", "propane", "flame", "plume", "jet", "overpressure", "quantitative risk assessment", "risk"]
license = {text = "GPL-3.0-only"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only"
]
dependencies = ["matplotlib", "numpy", "scipy", "coolprop >= 6.3"]
dynamic = ["version"]
[project.urls]
homepage = "https://hyram.sandia.gov/"
repository = "https://github.com/sandialabs/hyram"
[tool.setuptools.dynamic]
version = {attr = "hyram.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["hyram*"]