-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.04 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
[build-system]
requires = ["hatchling>=1.10.0", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "ipyrun"
dynamic = ["version"]
description = "template UI (ipywidgets / ipyautoui) for running python scripts in jupyterlab / voila."
readme = "README.md"
authors = [{ name = "John Gunstone", email = "[email protected]" }]
keywords = ["ipyrun"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"ipyautoui>=0.7",
"pydantic>2",
"Jinja2",
"halo",
"emoji",
"PyYAML",
"stringcase",
"immutables",
]
[project.urls]
Homepage = "https://github.com/maxfordham/ipyrun"
[tool.hatch.version]
source = "vcs"
version-file = "_version.py"
[tool.hatch.build.targets.sdist]
include = ["/src/ipyrun"]
# [tool.hatch.envs.ipyrun-dev]
# type = "conda"
# command = "mamba"
# ^ don't understand how this works...
[tool.pytest.ini_options]
pythonpath = "src"
testpaths = ["tests"]