forked from tensorx/tensorx
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (54 loc) · 1.74 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
57
58
[tool.poetry]
name = "tensorx"
version = "2.1.0"
repository = "https://github.com/davidenunes/tensorx"
homepage = "https://tensorx.org"
readme = 'README.md'
description = "TensorX is an open source library to build deep neural network models"
license = "Apache-2.0"
authors = ["Davide Nunes <[email protected]>"]
keywords = [
"tensorx",
"tensorflow",
"tensor",
"machine learning",
"neural networks",
"artificial/intelligence"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.7 < 3.9"
pygraphviz = { version = "*", optional = true }
tensornetwork = { version = "^0.4.1", optional = true }
tqdm = { version = "^4.48.1", optional = true }
pyqtgraph = { version = "^0.11.0", optional = true }
matplotlib = { version = "^3.3.0", optional = true }
PyQt5 = { version = "^5.15.0", optional = true }
numpy = "*"
[tool.poetry.extras]
pyqtgraph = ["pyqtgraph", "PyQt5"]
matplotlib = ["matplotlib"]
tqdm = ["tqdm"]
tensornetwork = ["tensornetwork"]
pygraphviz = ["pygraphviz"]
[tool.poetry.dev-dependencies]
mkdocs = "*"
mkgendocs = "*"
pytest = "*"
pytest-cov = "*"
mkdocs-material = "*"
[tool.pytest.ini_options]
filterwarnings = "ignore::DeprecationWarning:tensorflow"