-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (46 loc) · 1.9 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
[project]
name = "simple_module_cli"
version = "0.0.32"
description = "Standalone scaffolder for the SimpleModule framework — `smpy new`, `smpy create-module`, plugin host."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12"
authors = [{ name = "Anto Subash", email = "antosubash@live.com" }]
keywords = ["simple-module", "scaffolding", "cli", "fastapi", "modular-monolith"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
dependencies = [
"typer>=0.12",
"tomlkit>=0.13",
]
[project.scripts]
smpy = "simple_module_cli.cli:main"
simple-module = "simple_module_cli.cli:main"
[project.urls]
Homepage = "https://github.com/antosubash/simple_module_python"
Repository = "https://github.com/antosubash/simple_module_python"
Issues = "https://github.com/antosubash/simple_module_python/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
# The canonical ``skills/`` lives at the repo root (so `npx skills add` from
# vercel-labs/skills picks it up) and is symlinked into
# ``simple_module_cli/skills`` for editable installs and packaging.
# Hatchling follows that symlink during sdist + wheel builds, so the real
# files land inside the package — no force-include needed (and force-include
# with ``../../skills`` breaks the standard sdist→wheel rebuild because the
# unpacked sdist has no parent ``skills/``).
packages = ["simple_module_cli"]
[tool.hatch.build.targets.wheel.shared-data]
"simple_module_cli/templates" = "simple_module_cli/templates"