-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
81 lines (75 loc) · 1.74 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
[tool.black]
line-length = 88
[tool.isort]
skip=["tests/", ".venv/"]
[build-system]
requires = ["flit_core >=2,<3"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "superintendent"
author = "Jan Freyberg"
author-email = "[email protected]"
home-page = "https://github.com/janfreyberg/superintendent"
description-file = "README.md"
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Framework :: Jupyter",
]
license = "MIT"
keywords = "widgets labelling annotation"
requires-python = ">=3.6"
requires = [
"ipywidgets>=7.4",
"numpy>=1.15",
"pandas>=0.24.0",
"scikit-learn>=0.20.3",
"scipy>=1.2",
"sqlalchemy>=1.3",
"Pillow",
"cachetools>=3.1",
"psycopg2-binary>=2.8",
"ipyevents>=0.6.0",
"typing-extensions",
"sqlmodel",
"codetiming>=1.3.0",
]
[tool.flit.metadata.requires-extra]
dev = [
"jupyterlab>=3.0",
"rope",
]
test = [
"isort>=4.3.21",
"pytest>=4.1",
"pytest-cov>=2.6",
"hypothesis>=4.17",
"pytest-helpers-namespace>=2019.1",
"pytest-mock>=1.10",
"nbconvert>=5.4",
"coveralls>=1.7",
"docargs>=0.2.0",
"black>=19.3b0",
"flake8>=3.7",
"mypy",
"types-cachetools",
]
doc = [
"sphinx>=4.0",
"requests>=2.21",
"html5lib>=1.0",
"bs4>=0.0.1",
"wordcloud>=1.5",
"myst-parser>=0.18.0",
"sphinx_rtd_theme>=0.4.3",
"jupyter-sphinx>=0.1.4",
"nbsphinx>=0.4.2",
"sphinx-automodapi",
"ipyannotations>=0.5.1"
]
examples = ["requests>=2.21", "html5lib>=1.0", "bs4>=0.0.1", "wordcloud>=1.5"]
[tool.flit.sdist]
include = ["src/", "tests/"]
exclude = ["docs/"]