-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
43 lines (38 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
43
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["simopt", "simopt.gui", "simopt.models", "simopt.solvers"]
[project]
name = "simoptlib"
version = "1.1.1"
authors = [
{ name="David Eckman", email="[email protected]" },
{ name="Shane Henderson", email="[email protected]" },
{ name="Sara Shashaani", email="[email protected]" },
{ name="William Grochocinski", email="[email protected]" },
]
description = "A testbed for simulation-optimization experiments."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy >= 1.21.6",
"scipy >= 1.7.3",
"matplotlib >= 3.2.2",
"pandas >= 1.3.5",
"seaborn >= 0.11.2",
"mrg32k3a >= 1.0.0"
]
[project.urls]
"Homepage" = "https://github.com/simopt-admin/simopt"
"Documentation" = "https://simopt.readthedocs.io/en/latest/"
[tool.ruff]
line-length = 80
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "N", "UP", "ANN0", "ANN2", "ANN4", "ASYNC", "A", "RUF", "NPY201"]