-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.9 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
55
56
[tool.poetry]
name = "wonterfact"
version = "3.0.0"
description = "A powerful tool to design any tensor factorization model and estimate the corresponding parameters"
authors = ["Smart-Impulse <[email protected]>", "Benoit Fuentes <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/smartimpulse/wonterfact"
keywords = ["tensor", "factorization", "IA", "signal", "bayes"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.8, <3.10"
numpy = ">=1.20.2"
numba = ">=0.53.1"
scipy = ">=1.6.2"
opt_einsum = ">=3.3.0"
custom_inherit = ">=2.3.1"
python-baseconv = ">=1.2.2"
graphviz = ">=0.16"
methodtools = ">=0.4.2"
[tool.poetry.dev-dependencies]
pytest = ">=5.2"
pylint = ">=2.5.3"
black = {version = ">=19.10b0", allow-prereleases = true}
rope = ">=0.18.0"
line_profiler = "^3.2.6"
[tool.pytest.ini_options]
markers = [
"gpu: marks tests as running on gpu (deselect with '-m \"not gpu\"')"
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"