-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
82 lines (72 loc) · 2.05 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
81
82
[tool.black]
line-length = 79
[tool.poetry]
name = "setvis"
packages = [{ include = "setvis" }]
version = "0.1rc4"
description = "Visualize set membership and missing data"
authors = [
"The Setvis Maintainers",
"Layik Hama <[email protected]>",
"Roy Ruddle <[email protected]>",
"Oliver Strickson <[email protected]>",
"Pam Wochner <[email protected]>"
]
readme = "README.md"
license = "Apache-2.0"
documentation = "https://setvis.readthedocs.io/en/latest/"
repository = "https://github.com/alan-turing-institute/setvis"
classifiers = [
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Science/Research",
"Framework :: Jupyter"
]
[tool.poetry.dependencies]
python = ">=3.9"
bokeh = "^3.4"
numpy = ">=1.21,<3"
pandas = ">=1.3,<3"
pydantic = ">=1.8,<3"
tomli = "^2.0"
setuptools = ">=68.1"
notebook = { version = ">=6.4,<8", optional = true }
matplotlib = { version = "^3.4", optional = true }
scipy = { version = "^1.7", optional = true }
scikit-learn = { version = ">=0.2,<2", optional = true }
Sphinx = { version = ">=4.3", optional = true }
pydata-sphinx-theme = { version = "^0.7", optional = true }
pytest = { version = ">=6.2", optional = true }
psycopg2-binary = { version = "^2.9", optional = true }
numexpr = { version = "^2.7", optional = true }
Bottleneck = { version = "^1.3", optional = true }
[tool.poetry.extras]
notebooks = ["notebook", "matplotlib", "scikit-learn"]
# Read the Docs expects this to be named 'doc'.
# Edit .readthedocs.yaml if changed
doc = ["Sphinx", "pydata-sphinx-theme"]
test = ["pytest"]
performance-extras = ["numexpr", "Bottleneck"]
db = ["psycopg2-binary"]
extra = [
"notebook",
"matplotlib",
"scikit-learn",
"Sphinx",
"pydata-sphinx-theme",
"pytest",
]
all = [
"notebook",
"matplotlib",
"scikit-learn",
"Sphinx",
"pydata-sphinx-theme",
"pytest",
"numexpr",
"Bottleneck",
"psycopg2-binary",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"