-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
54 lines (50 loc) · 1.36 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
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "lasso-python"
version = "2.0.3"
description = "An open-source CAE and Machine Learning library."
authors = ["open-lasso-python <[email protected]>"]
license = "BSD-3"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Topic :: Utilities",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
packages = [
{ include = "lasso" }
]
[tool.poetry.dependencies]
python = "^3.9"
h5py = "^3.7.0"
scipy = "^1.9.1"
numpy = "^1.23.3"
plotly = "^5.10.0"
attrs = "^23.2.0"
psutil = "^5.9.2"
rich = "^13.0.0"
pandas = "^2.2.0"
scikit-learn = "^1.2.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^5.0.0"
black = "^24.3.0"
ruff = "^0.3.7"
mkdocs = "^1.4.2"
mkdocs-material = "^9.5.0"
mkdocstrings = {extras = ["python"], version = "^0.24.3"}
mkdocs-coverage = "^1.0.0"
git-changelog = "^2.5.0"
twine = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
# We allow longer lines since 80 is quite short
line-length=100