forked from Project-Platypus/Rhodium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 834 Bytes
/
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
[build-system]
requires = ["setuptools >= 63.0"]
build-backend = "setuptools.build_meta"
[project]
name = "Rhodium"
description = "Robust decision making and exploratory modelling in Python"
authors = [
{ name="David Hadka", email="[email protected]" },
]
readme = "README.md"
license = { file="COPYING" }
requires-python = ">= 3.6"
dependencies = [
"numpy",
"seaborn",
"mplcursors",
"pydot",
"prim",
"SALib",
"platypus-opt",
"scikit-learn"
]
dynamic = ["version"] # Version is read from rhodium/__init__.py
[project.urls]
"Homepage" = "https://github.com/Project-Platypus/Rhodium"
"Bug Tracker" = "https://github.com/Project-Platypus/Rhodium/issues"
[project.optional-dependencies]
test = ["pytest", "mock", "openmdao", "pyper"]
[tool.setuptools.dynamic]
version = {attr = "rhodium.__version__"}