-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
80 lines (74 loc) · 2.22 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "divik"
version = "3.2.4"
description = "Divisive iK-means algorithm implementation"
authors = ["Grzegorz Mrukwa <g.mrukwa@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/gmrukwa/divik"
repository = "https://github.com/gmrukwa/divik"
documentation = "https://divik.readthedocs.io/"
classifiers = [
# based on https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
]
include = [
"gamred_native",
]
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = ">=3.7.1,<4.0"
dask = {extras = ["dataframe"], version = ">=2.14.0"}
dask-distance = "^0.2.0"
h5py = ">=2.8.0"
importlib-metadata = {version = "^6.0", python = "<3.8"}
kneed = ">=0.5.1"
matplotlib = "^3.3.3"
numpy = ">=0.12.1"
pandas = ">=0.20.3"
scipy = ">=0.19.1"
scikit-image = ">=0.14.1"
scikit-learn = ">=0.19.0"
tqdm = ">=4.11.2"
joblib = "^1.0.0"
polyaxon = {version = "^1.5.0", optional = true}
gin-config = {version = "^0.5.0", optional = true}
[tool.poetry.extras]
gin = ["gin-config"]
polyaxon = ["polyaxon"]
all = ["gin-config", "polyaxon"]
[tool.poetry.dev-dependencies]
parameterized = "^0.8.1"
polyaxon = "^1.5.0"
gin-config = "^0.5.0"
isort = "^5.7.0"
Sphinx = "^3.4.3"
sphinx-markdown-builder = "^0.5.4"
sphinx-autodoc-typehints = "^1.11.1"
sphinx-rtd-theme = "^0.5.1"
numpydoc = "^1.1.0"
pytest = "^6.2.1"
black = "^19.10b0"
jupyterlab = "^3.5.3"
[tool.poetry.scripts]
fit-clusters = "divik._cli.fit_clusters:main"
[build-system]
requires = [
"poetry-core>=1.0.0",
"oldest-supported-numpy",
"setuptools",
]
build-backend = "poetry.core.masonry.api"