forked from dennisbakhuis/pigeonXT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 931 Bytes
/
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
[tool.poetry]
name = "pigeonXT-jupyter"
version = "0.7.3"
description = "Quickly annotate data in Jupyter notebooks."
authors = ["Dennis Bakhuis <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
homepage = "https://github.com/dennisbakhuis/pigeonXT"
repository = "https://github.com/dennisbakhuis/pigeonXT"
keywords = [
'artificial inteligence', 'labeling', 'jupyter',
'machine learning', 'data science', 'data', 'science',
]
include = [
"MIT",
]
packages = [{include = "pigeonXT"}]
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.23"
pandas = "^1.3"
jupyterlab = "^3.3"
ipywidgets = "^8.0"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
pre-commit = "^2.21.0"
pytest = "^7.2.0"
pydocstyle = "^6.2.3"
toml = "^0.10.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.pydocstyle]
convention = "numpy"