-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.35 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
[tool.poetry]
name = "hierarchicalsoftmax"
version = "1.1.0"
description = "A Hierarchical Softmax Framework for PyTorch."
authors = ["Robert Turnbull <[email protected]>"]
license = "Apache-2.0"
readme = "README.rst"
homepage = "https://github.com/rbturnbull/hierarchicalsoftmax"
repository = "https://github.com/rbturnbull/hierarchicalsoftmax"
documentation = "https://rbturnbull.github.io/hierarchicalsoftmax/"
keywords = ["pytorch", "softmax"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.poetry.dependencies]
python = "^3.8"
anytree = "^2.8.0"
torch = ">=1.10.2"
rich = ">=10.16.1"
scikit-learn = "^1.1.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
ipykernel = "^6.6.1"
coverage = "^5.5"
autopep8 = "^1.5.7"
Sphinx = "^4.2.0"
nbsphinx = "^0.8.7"
sphinx-rtd-theme = "^1.0.0"
sphinx-autobuild = "^2021.3.14"
myst-parser = "^0.15.2"
pre-commit = "^2.15.0"
sphinx-copybutton = "^0.4.0"
black = "^21.10b0"
sphinx-click = {git = "https://github.com/rbturnbull/sphinx-click.git"}
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"