# Python Project Template 1 Pyprojecttoml

> Sub-skill of python-project-template: 1. pyproject.toml (+2).

- Skill: `vamseeachanta/python-project-template-1-pyprojecttoml` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/python-project-template-1-pyprojecttoml`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/python-project-template-1-pyprojecttoml/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/python-project-template-1-pyprojecttoml

---


# 1. pyproject.toml (+2)

## 1. pyproject.toml


```toml
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "{{project_name}}"
version = "0.1.0"
description = "{{description}}"
readme = "README.md"

*See sub-skills for full details.*

## 2. conftest.py


```python
"""
ABOUTME: Pytest configuration and fixtures for {{project_name}}
ABOUTME: Provides shared fixtures and test utilities
"""

import sys
from pathlib import Path

import pytest

*See sub-skills for full details.*

## 3. AGENTS.md Template


```markdown
# Codex - {{project_name}}

> AI agent instructions for {{project_name}}

