-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.26 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "optymus"
version = "0.1.10"
description = "Optimization methods in Python"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"plotly==5.24.1",
"nbformat>=4.2.0",
"jax>=0.4.28",
"jaxlib>=0.4.28",
"tqdm>=4.66.4",
"pandas>=2.2",
"numpy==1.26.4",
"matplotlib>=3.9.0",
"seaborn>=0.13.2",
"scikit-learn>=1.5.0",
]
[project.urls]
Homepage = "https://github.com/quant-sci/optymus"
"Bug Tracker" = "https://github.com/quant-sci/optymus/issues"
[project.optional-dependencies]
dev = [
"pytest~=8.2", # For running tests
"black~=24.4", # For code formatting
"ruff~=0.4", # For lintingent
]
testing = [
"plotly==5.24.1",
"nbformat>=4.2.0",
"jax>=0.4.28",
"jaxlib>=0.4.28",
"tqdm>=4.66.4",
"pandas>=2.2",
"numpy==1.26.4",
"matplotlib>=3.9.0",
"seaborn>=0.13.2",
"scikit-learn>=1.5.0",
"ipykernel"
]
docs = [
"pydata-sphinx-theme==0.15.2",
"sphinx_design==0.5.0",
"sphinx_togglebutton==0.3.2",
"sphinxcontrib.youtube==1.4.1",
"sphinx_copybutton==0.5.2",
"myst_parser==3.0.1",
"nbsphinx==0.9.4",
"ipython==8.25.0"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]