- Created `.gitignore` files for various directories to exclude unnecessary files. - Added `PLAN.md` to outline the project goals and architecture documentation generation. - Implemented the `archdoc-cli` with a command-line interface for initializing and generating documentation. - Developed the `archdoc-core` library for analyzing Python projects and generating architecture documentation. - Included caching mechanisms to optimize repeated analysis. - Established a comprehensive test suite to ensure functionality and error handling. - Updated `README.md` to provide an overview and installation instructions for ArchDoc.
22 lines
401 B
TOML
22 lines
401 B
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "test-project"
|
|
version = "0.1.0"
|
|
description = "A test project for ArchDoc"
|
|
authors = [
|
|
{name = "Test Author", email = "test@example.com"}
|
|
]
|
|
dependencies = [
|
|
"requests>=2.25.0",
|
|
"sqlite3"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=6.0",
|
|
"black",
|
|
"flake8"
|
|
] |