-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.58 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ezinput"
version = "0.0.18"
description = "Simplify the creation of GUI elements in terminals and Jupyter Notebooks"
authors = [
{ name = "Bruno M. Saraiva", email = "bruno.msaraiva2@gmail.com" },
{ name = "Ricardo Henriques", email = "ricardo@henriqueslab.org"}
]
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">= 3.9"
dependencies = [
"ipython",
"ipywidgets",
"ipyfilechooser>=0.6.0",
"pyyaml>=6.0.1",
"toml>=0.10.2",
"prompt-toolkit>=3.0.43",
]
[project.scripts]
ezinput = "ezinput.ipynb_runner:run_notebook"
[project.optional-dependencies]
all = ["ezinput[dev, test]"]
dev = [
"pre-commit>=3.7.0",
"ipykernel>=6.29.4",
"ruff>=0.4.3",
"gptrepo>=1.0.3",
"pdoc>=12.3.1",
"build"
]
test = [
"pytest>=7.2.0",
"pytest-xdist>=3.6.1",
"pytest-cov>=5.0.0",
"pytest-timeout>=2.2",
"nbmake>=1.5.3",
"mypy>=1.10.0"
]
colab = [
"ipycanvas==0.11.0",
"ipywidgets==7.7.1",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[tool.pytest.ini_options]
addopts = "--nbmake --cov=ezinput --cov-report=term-missing --cov-report=xml --timeout=10"
markers = [
"use_real_config: mark test to use real ~/.ezinput/ directory instead of temporary isolated config"
]