41 lines
975 B
TOML
41 lines
975 B
TOML
[project]
|
|
name = "ppmc"
|
|
version = "0.1.0"
|
|
description = "C++ Project Manager and Creator"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "Your Name", email = "your.email@example.com"}
|
|
]
|
|
keywords = ["c++", "project", "generator", "cmake", "conan"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Software Development :: Code Generators",
|
|
]
|
|
|
|
dependencies = [
|
|
"argparse>=1.4.0",
|
|
"click>=8.3.1",
|
|
"colorama>=0.4.6",
|
|
"jinja2>=3.1.6",
|
|
]
|
|
|
|
[project.scripts]
|
|
ppmc = "ppmc.cli:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/yourusername/ppmc"
|
|
Repository = "https://github.com/yourusername/ppmc"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["ppmc*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
ppmc = ["templates/**/*"] |