-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
36 lines (31 loc) · 1.04 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
[project]
name = "helmeos"
description = "A Python implementation/port of Frank Timmes' Helmholtz EoS."
authors = [{name = "Matthew S. B. Coleman", email = "[email protected]"}]
maintainers = [{name = "Matthew S. B. Coleman", email = "[email protected]"}]
dynamic = ["version"]
readme = "README.md"
dependencies = [
"numpy",
]
license = {text = "MIT License"}
keywords = ["equation of state", "helmeos", "eos", "thermodynamics",
"astrophysics", "astronomy", "physics"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Repository = "https://github.com/msbc/helmeos"
[project.optional-dependencies]
plotting = ["matplotlib"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["helmeos"]
[tool.setuptools.dynamic]
version = {attr = "helmeos.__version__"}