-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.35 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
[project]
name = "dayplot"
version = "0.5.1"
description = "Calendar heatmaps with matplotlib"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["matplotlib", "calendar", "heatmap", "github", "plot"]
authors = [
{ name = "Joseph Barbier", email = "joseph.barbierdarnal@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"matplotlib",
"narwhals>=1.0.0",
]
[project.optional-dependencies]
data = ["requests"]
[dependency-groups]
dev = [
"dotenv>=0.9.9",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"ruff>=0.11.13",
"mkdocs-matplotlib>=0.10.1",
"mkdocs-material>=9.6.9",
"mkdocstrings-python>=1.16.5",
"coverage>=7.9.1",
"genbadge[coverage]>=1.1.2",
"polars>=1.31.0",
"ty>=0.0.1a20",
"pandas>=2.3.0",
"plotjs>=0.0.9",
]
[build-system]
requires = [
"setuptools",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["dayplot"]
[tool.setuptools.package-data]
mypkg = ["sample.csv"]
[tool.uv.sources]
dayplot = { workspace = true }
[project.urls]
Homepage = "https://y-sunflower.github.io/dayplot/"
Issues = "https://github.com/y-sunflower/dayplot/issues"
Documentation = "https://y-sunflower.github.io/dayplot/reference/calendar/"
Repository = "https://github.com/y-sunflower/dayplot"
[tool.ty.src]
include = ["dayplot"]
exclude = ["tests"]