python-mommy-venv/pyproject.toml
2025-07-29 12:46:56 +02:00

29 lines
780 B
TOML

[project]
description = "Mommy's here to support you when running python (in a virtual enviroment)~ ❤️"
name = "python_mommy_venv"
dependencies = ["toml", "requests"]
authors = []
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
]
version = "0.0.0"
license-files = ["LICENSE"]
[project.scripts]
mommify-venv-compile = "python_mommy_venv.__main__:cli_compile_config"
mommify-venv = "python_mommy_venv.__main__:mommify_venv"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.build]
directory = "dist"
[tool.hatch.build.targets.wheel]
packages = ["python_mommy_venv"]