-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.39 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
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.isort]
profile = "black"
[tool.poetry]
name = "deepmatrixinversion"
version = "1.0.0"
description = "A simple tool invert matrix using neural networks"
authors = ["Giuseppe Marco Randazzo <[email protected]>"]
readme = "README.md"
license = "lglpv3"
repository = "https://github.com/gmrandazzo/DeepMatrixInversion"
packages = [{include = "deepmatrixinversion", from = "src"}]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Topic :: Scientific/Engineering"
]
[tool.poetry.dependencies]
python = "^3.9"
scikit-learn = "^1.5.2"
matplotlib = "^3.9.2"
tensorflow = [
{ version = "^2.17.0", extras = ["and-cuda"], markers = "sys_platform == 'linux'" },
{ version = "^2.17.0", markers = "sys_platform == 'darwin'" }
]
toml = "^0.10.2"
[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pre-commit = "^3.3.3"
tox = "^4.2.3"
[tool.poetry.scripts]
dmxtrain = "deepmatrixinversion.train:main"
dmxinvert = "deepmatrixinversion.predict:main"
dmxdatasetgenerator = "deepmatrixinversion.generate_dataset:main"
dmxdatasetverify = "deepmatrixinversion.verify_dataset:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"