-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
73 lines (62 loc) · 1.96 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "motheme"
description = "Marimo Theming Management"
authors = [{ name = "eugene", email = "[email protected]" }]
dynamic = ["version"]
dependencies = [
"appdirs>=1.4.4", # Cross-platform directory paths
"arguably>=1.3.0", # Command-line argument parsing
"requests>=2.32.3", # HTTP library for making requests
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
motheme = "motheme.cli:main"
[project.urls]
Homepage = "https://github.com/metaboulie/marimo-themes"
Repository = "https://github.com/metaboulie/marimo-themes"
[tool.hatch.version]
path = "src/motheme/__init__.py"
[project.optional-dependencies]
dev = [
"hatch>=1.13.0", # Build backend and project management
"marimo>=0.9.14", # Interactive Python notebooks
"ruff>=0.7.1", # Fast Python linter and formatter
]
test = [
"pytest>=8.3.4", # Testing framework
]
[tool.hatch.build.targets.wheel]
packages = ["src/motheme"]
[tool.hatch.envs.default]
installer = "uv"
[tool.hatch.envs.default.scripts]
lint = "ruff check --fix"
lint-unsafe = "ruff check --fix --unsafe-fixes"
format = "ruff format"
[tool.hatch.envs.test]
dependencies = ["pytest>=8.3.4"]
[[tool.hatch.envs.test.matrix]]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
[tool.hatch.envs.test.scripts]
test = "pytest {args:tests/}"