-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 807 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 807 Bytes
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
[project]
name = "jupyturtle"
description = "Turtle graphics for Jupyter Notebooks"
version = "2024.04.01"
authors = [
{ name="Luciano Ramalho", email="luciano@ramalho.org" },
]
dependencies = [
"jupyter",
"ipython>=8",
"pytest",
]
requires-python = ">=3.10"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/ramalho/jupyturtle"
Issues = "https://github.com/ramalho/jupyturtle/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.format]
# Like Python's `repr()`, use single quotes for strings.
quote-style = 'single'
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]