-
Notifications
You must be signed in to change notification settings - Fork 42
/
pyproject.toml
42 lines (37 loc) · 1.16 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 = "burnman"
version = "2.1.1a"
description = "A thermoelastic and thermodynamic toolkit for the Earth and planetary sciences"
license = "GPL"
authors = ["The BurnMan Team <[email protected]>",]
readme = "Readme.md"
homepage = "https://geodynamics.github.io/burnman/"
repository = "https://github.com/geodynamics/burnman"
documentation = "https://burnman.readthedocs.io/"
classifiers = [
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.24"
scipy = "^1.10"
sympy = "^1.12"
cvxpy = "^1.3"
matplotlib = "^3.7"
numba = "^0.59"
pycddlib-standalone = {version = "^3.0", optional = true}
[tool.poetry.dev-dependencies]
ipython = "^8.5"
numba = "^0.59"
[tool.poetry.extras]
dev = ["pycddlib-standalone"]
[tool.poetry.group.dev.dependencies]
black = "24.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"