-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 1.33 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
[tool.poetry]
name = "pyprotoclust"
version = "0.1.0"
description = "Hierarchical clustering using minimax linkage."
authors = ["Andy Goldschmidt <[email protected]>"]
repository = "https://github.com/andgoldschmidt/pyprotoclust"
documentation = "https://pyprotoclust.readthedocs.io/"
keywords = ["hierarchical", "clustering", "minimax", "prototypes"]
license = "MIT"
readme = 'README.rst'
build = 'build.py'
[tool.poetry.dependencies]
python = "^3.7"
tqdm = "^4.46.0"
# Optional if using supplied cpps
cython = {version = "^0.29.17", optional = true}
# Docs and examples
sphinx = {version = "^3.0.3", optional = true}
sklearn = {version = "^0.0", optional = true}
scipy = {version = "^1.4.1", optional = true}
nbsphinx = {version = "^0.8.6", optional = true}
jupyter_client = {version = "^6.1.3", optional = true}
ipykernel = {version = "^5.2.1", optional = true}
matplotlib = {version = "^3.2.1", optional = true}
ipywidgets = {version = "^7.5.1", optional = true}
sphinx_rtd_theme = {version = "^0.4.3", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.poetry.extras]
cython = ["cython"]
docs = ["sphinx", "sklearn", "scipy", "nbsphinx", "jupyter_client", "ipykernel", "matplotlib", "ipywidgets",
"sphinx_rtd_theme"]
[build-system]
requires = ["poetry_core>=1.0.0", "setuptools", "cython"]
build-backend = "poetry.core.masonry.api"