-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1 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
[tool.poetry]
name = "nueramic_mathml"
version = "0.75.2"
description = "Math algorithms in ML on torch"
authors = [
"Victor Barbarich <[email protected]>",
"Adelina Tsoi <[email protected]>"
]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/nueramic/mathml"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
packages = [
{ include = "nueramic_mathml", from = "src" }
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/nueramic/mathml/issues"
[tool.poetry.dependencies]
python = ">=3.7.1,<3.11"
torch = "^1.11.0"
numpy = "^1.21.6"
plotly = "^5.8.2"
pandas = "^1.3"
scikit-learn = "^1.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
Sphinx = "^5.0.1"
furo = "^2022.6.4"
sphinxcontrib-pseudocode = "^0.7.0"
sphinxcontrib-katex = "^0.8.6"
sphinx-copybutton = "^0.5.0"
scikit-learn = "^1.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"