-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.11 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
[tool.poetry]
name = "cassini"
version = "0.3.0"
description = "A tool to structure experimental work, data and analysis using Jupyter Lab."
authors = ["0Hughman0 <rammers2@hotmail.co.uk>"]
license = "GPL-3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8.1"
ipywidgets = "^8.0"
jupyterlab = "^4.0.0"
typing-extensions = "^4.7.1"
jupyter_cassini_server = "~0.3.0"
pydantic = "^2.8.2"
pandas = { version="^1.0", optional=true }
semantic-version = { version="^2.10.0", optional=true }
[tool.poetry.extras]
ipygui = ["pandas"]
cassini_lib = ["semantic-version"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
pytest-cov = "^4.1.0"
flake8 = "^6.1.0"
black = "^23.7.0"
mypy = "^1.4.1"
pandas-stubs = "^2.0.2.230605"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
tomli = "^2.0.1"
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.42"
mkdocstrings-python = "^1.9.1"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
mkdocs-section-index = "^0.3.9"
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"