-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.38 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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "dummy"
version = "6.0.0"
description = "Reusable configuration templates for modern Python projects"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Harry Campion" }
]
keywords = ["templates", "configuration", "taskfile", "ci", "ruff"]
classifiers = [
"Private :: Do Not Upload",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
[project.urls]
Homepage = "https://github.com/HarryCampion/dummy"
Repository = "https://github.com/HarryCampion/dummy"
Issues = "https://github.com/HarryCampion/dummy/issues"
[dependency-groups]
dev = [
"marimo>=0.18.0",
"numpy>=2.4.0",
"plotly>=6.5.0",
"pandas>=2.3.3"
]
[tool.marimo.runtime]
pythonpath = ["src"]
[tool.hatch.build.targets.wheel]
# Use src-layout: package code is under src/dummy
packages = ["src/dummy"]
[tool.deptry]
# see https://deptry.com/usage/#pep-621-dev-dependency-groups
pep621_dev_dependency_groups = ["dev"]