Metadata-Version: 2.4
Name: depcon
Version: 0.4.1
Summary: Convert legacy requirements files to modern pyproject.toml format with full PEP 621 support
Project-URL: Homepage, https://github.com/lancereinsmith/depcon
Project-URL: Bug Tracker, https://github.com/lancereinsmith/depcon/issues
Project-URL: Documentation, https://lancereinsmith.github.io/depcon/
Project-URL: Repository, https://github.com/lancereinsmith/depcon
Author-email: Lance Reinsmith <info@k2rad.com>
License: MIT
License-File: LICENSE
Keywords: conversion,dependencies,dependency-management,hatchling,pep621,pyproject,requirements,uv
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Requires-Dist: click>=8.3.0
Requires-Dist: packaging>=21.0
Requires-Dist: pydantic>=2.11.10
Requires-Dist: rich>=13.0.0
Requires-Dist: tomli-w>=1.2.0
Requires-Dist: tomli>=2.0.0
Description-Content-Type: text/markdown

# depcon

```text
   |                             
 __|   _    _   __   __   _  _   
/  |  |/  |/ \_/    /  \_/ |/ |  
\_/|_/|__/|__/ \___/\__/   |  |_/
         /|                      
         \|                      
```

`depcon` is a modern, fully-featured tool for converting legacy `requirements.txt` files to the standardized `pyproject.toml` format with full PEP 621 support. It provides intelligent dependency grouping, validation, and seamless integration with modern Python packaging tools like `uv`, `hatchling`, and `setuptools`.

## Features

- **Full PEP 621 & PEP 735 Support**: Complete support for modern Python packaging standards
- **Intelligent Dependency Grouping**: Automatically categorizes dependencies into main, dev, test, and docs groups
- **Proper Dependency Types**: Correctly distinguishes between dependency-groups (PEP 735) and optional-dependencies (PEP 621 extras)
- **Advanced Parsing**: Handles complex requirements files including pip-tools, editable installs, and URLs
- **Validation**: Built-in dependency validation and error checking
- **Multiple Build Backends**: Support for hatchling, setuptools, and poetry
- **Tool Integration**: Automatic configuration for uv, hatch, and other modern tools
- **Rich CLI**: Beautiful command-line interface with progress indicators and summaries
- **Flexible Configuration**: Extensive options for customization and control
- **Export & Sync**: Export dependencies to requirements.txt and sync between formats

## Installation

### Using uv (Recommended)

```bash
# Install with uv
uv tool install depcon

# Or run directly without installing
uvx depcon
```

### Using pipx

```bash
pipx install depcon
```

### Using pip

```bash
pip install depcon
```

## Quick Start

### Basic Conversion

Convert a simple requirements.txt file:

```bash
depcon convert -r requirements.txt
```

### Full Project Migration

Convert multiple requirement files with proper grouping:

```bash
depcon convert \
  -r requirements.txt \
  -d requirements-dev.txt \
  -t requirements-test.txt \
  --docs-requirements requirements-docs.txt \
  --project-name "my-awesome-project" \
  --project-description "An awesome Python project"
```

## Commands

### `convert` - Convert requirements files to pyproject.toml

The main command for converting requirements files to modern pyproject.toml format with full PEP 621 and PEP 735 support.

**Options:**

- `-r, --requirements PATH`: Requirements files to process (requirements.txt, requirements.in)
- `-d, --dev-requirements PATH`: Development requirements files to process
- `-t, --test-requirements PATH`: Test requirements files to process
- `--docs-requirements PATH`: Documentation requirements files to process
- `-o, --output PATH`: Output pyproject.toml file path (default: pyproject.toml)
- `--append / --no-append`: Append to existing dependencies instead of replacing
- `--backup / --no-backup`: Create backup of existing pyproject.toml
- `--resolve / --no-resolve`: Resolve and pin dependency versions
- `--sort / --no-sort`: Sort dependencies alphabetically
- `--build-backend [hatchling|setuptools|poetry]`: Build backend to use
- `--dev-group TEXT`: Name for development dependencies group (default: dev)
- `--test-group TEXT`: Name for test dependencies group (default: test)
- `--docs-group TEXT`: Name for documentation dependencies group (default: docs)
- `--project-name TEXT`: Project name (if creating new pyproject.toml)
- `--project-version TEXT`: Project version (if creating new pyproject.toml)
- `--project-description TEXT`: Project description (if creating new pyproject.toml)
- `--python-version TEXT`: Python version requirement (default: >=3.11)
- `--use-optional-deps / --use-dependency-groups`: Use optional-dependencies (PEP 621 extras) instead of dependency-groups (PEP 735)
- `--remove-duplicates / --keep-duplicates`: Remove duplicate dependencies across groups (default: remove)
- `--strict / --no-strict`: Strict mode: fail on parsing errors instead of warning
- `-v, --verbose`: Enable verbose output

### `show` - Display dependencies from pyproject.toml

Show dependencies in a formatted table.

**Options:**

- `-f, --file PATH`: Path to pyproject.toml file (default: pyproject.toml)
- `--format [table|json|yaml]`: Output format (default: table)
- `--group TEXT`: Show only specific dependency group (main, dev, test, docs, or optional group name)

### `validate` - Validate pyproject.toml dependencies

Validate that all dependencies are properly formatted.

**Options:**

- `-f, --file PATH`: Path to pyproject.toml file (default: pyproject.toml)
- `--group TEXT`: Dependency group to validate (main, dev, test, docs)
- `--check-pypi / --no-check-pypi`: Check if packages exist on PyPI

### `export` - Export dependencies to requirements.txt

Export dependencies from pyproject.toml to requirements.txt format.

**Options:**

- `-f, --file PATH`: Path to pyproject.toml file (default: pyproject.toml)
- `-o, --output PATH`: Output requirements.txt file path (default: requirements.txt)
- `--group TEXT`: Dependency group to export (main, dev, test, docs, or all) (default: main)
- `--include-hashes`: Include package hashes in output

### `diff` - Show differences between files

Show differences between pyproject.toml and requirements files.

**Options:**

- `-f, --file PATH`: Path to pyproject.toml file (default: pyproject.toml)
- `-r, --requirements PATH`: Path to requirements.txt file to compare
- `--group TEXT`: Dependency group to compare (main, dev, test, docs)

### `sync` - Sync dependencies to requirements files

Sync dependencies from pyproject.toml to requirements files.

**Options:**

- `-f, --file PATH`: Path to pyproject.toml file (default: pyproject.toml)
- `--group TEXT`: Dependency groups to sync (can be specified multiple times, default: all)
- `--dry-run`: Show what would be synced without making changes

### `list` - List all dependency groups

List all dependency groups in pyproject.toml.

**Options:**

- `-f, --file PATH`: Path to pyproject.toml file (default: pyproject.toml)

### `check` - Check for common issues

Check pyproject.toml for common issues like duplicate dependencies.

**Options:**

- `-f, --file PATH`: Path to pyproject.toml file (default: pyproject.toml)
- `--check-duplicates / --no-check-duplicates`: Check for duplicate dependencies (default: check)
- `--check-missing / --no-check-missing`: Check for missing optional dependencies

## Examples

### Basic Usage

```bash
# Convert a single requirements file
depcon convert -r requirements.txt

# Convert with development dependencies
depcon convert -r requirements.txt -d requirements-dev.txt

# Convert with all dependency types
depcon convert \
  -r requirements.txt \
  -d requirements-dev.txt \
  -t requirements-test.txt \
  --docs-requirements requirements-docs.txt
```

### Advanced Usage

```bash
# Create a new project with custom metadata
depcon convert \
  -r requirements.txt \
  --project-name "my-project" \
  --project-description "A great Python project" \
  --project-version "1.0.0" \
  --python-version ">=3.9"

# Use different build backend
depcon convert -r requirements.txt --build-backend setuptools

# Append to existing dependencies
depcon convert -r new-requirements.txt --append

# Resolve and pin versions
depcon convert -r requirements.in --resolve
```

### Viewing Dependencies

```bash
# Show dependencies in table format
depcon show

# Show in JSON format
depcon show --format json

# Show in YAML format
depcon show --format yaml
```

### Validation

```bash
# Validate all dependencies
depcon validate

# Validate specific group
depcon validate --group dev
```

### Exporting Dependencies

```bash
# Export main dependencies to requirements.txt
depcon export

# Export specific group
depcon export --group dev -o requirements-dev.txt

# Export all dependencies
depcon export --group all -o requirements-all.txt
```

### Comparing Dependencies

```bash
# Show differences between pyproject.toml and requirements.txt
depcon diff -r requirements.txt

# Compare specific group
depcon diff -r requirements-dev.txt --group dev
```

### Syncing Dependencies

```bash
# Sync all groups to requirements files
depcon sync

# Sync specific groups
depcon sync --group dev --group test

# Dry run to see what would be synced
depcon sync --dry-run
```

## Generated pyproject.toml Structure

The tool generates modern `pyproject.toml` files following PEP 621 and PEP 735 standards:

```toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "my-project"
version = "1.0.0"
description = "A great Python project"
requires-python = ">=3.11"
dependencies = [
    "requests>=2.25.0",
    "numpy>=1.20.0",
]

[project.optional-dependencies]
security = [
    "requests[security]>=2.25.0",
]

[dependency-groups]
dev = [
    "pytest>=7.0.0",
    "black>=23.0.0",
    "ruff>=0.1.0",
]
test = [
    "pytest>=7.0.0",
    "pytest-cov>=4.0.0",
]
docs = [
    "sphinx>=5.0.0",
    "sphinx-rtd-theme>=1.0.0",
]

[tool.hatch.build.targets.wheel]
packages = ["src"]
```

### Understanding Dependency Types

- **`dependencies`**: Core runtime dependencies required for the package
- **`[project.optional-dependencies]`** (PEP 621): Installable extras (e.g., `pip install package[security]`)
- **`[dependency-groups]`** (PEP 735): Development dependencies for tools like `uv` (not installable extras)

## Supported File Formats

- `requirements.txt` - Standard pip requirements files
- `requirements.in` - pip-tools input files
- `requirements-dev.txt` - Development dependencies
- `requirements-test.txt` - Test dependencies
- `requirements-docs.txt` - Documentation dependencies
- Custom requirement files with any name

## Dependency Grouping

The tool intelligently groups dependencies based on common patterns:

- **Main Dependencies**: Core project dependencies
- **Development Dependencies**: Tools like pytest, black, ruff, mypy, pre-commit
- **Test Dependencies**: Testing frameworks and utilities
- **Documentation Dependencies**: Sphinx, mkdocs, and related tools

## Integration with Modern Tools

### uv Integration

depcon uses `[dependency-groups]` (PEP 735) for uv, which is the modern standard:

```bash
# Initialize project with uv
uv init

# Convert dependencies
depcon convert -r requirements.txt

# Sync dependencies with uv
uv sync

# Install specific dependency groups
uv sync --group dev --group test
```

### Hatch Integration

```bash
# Convert with hatchling backend
depcon convert -r requirements.txt --build-backend hatchling

# Build with hatch
hatch build
```

### Poetry Integration

```bash
# Convert with poetry backend
depcon convert -r requirements.txt --build-backend poetry

# Install dependencies
poetry install
```

## Migration Workflow

1. **Backup**: The tool automatically creates backups of existing `pyproject.toml` files
2. **Convert**: Run `depcon convert` with your requirements files
3. **Validate**: Use `depcon validate` to check for issues
4. **Review**: Examine the generated `pyproject.toml` file
5. **Test**: Install dependencies and test your project
6. **Cleanup**: Remove old requirements files once satisfied

## Documentation

Comprehensive documentation is available at [https://lancereinsmith.github.io/depcon/](https://lancereinsmith.github.io/depcon/).

- **[Installation Guide](https://lancereinsmith.github.io/depcon/installation.html)** - Detailed installation instructions
- **[Quick Start](https://lancereinsmith.github.io/depcon/quickstart.html)** - Get up and running quickly
- **[User Guide](https://lancereinsmith.github.io/depcon/user_guide.html)** - Complete feature reference
- **[API Reference](https://lancereinsmith.github.io/depcon/api_reference.html)** - Detailed API documentation
- **[Examples](https://lancereinsmith.github.io/depcon/examples.html)** - Real-world usage examples
- **[Contributing](https://lancereinsmith.github.io/depcon/contributing.html)** - How to contribute to the project

## Contributing

Contributions are welcome! Please see our [Contributing Guide](CONTRIBUTORS.md) and [Development Guide](DEVELOPMENT.md) for details.

### Quick Development Setup

```bash
# Clone the repository
git clone https://github.com/lancereinsmith/depcon.git
cd depcon

# Install in development mode
uv pip install -e ".[dev]"

# Install pre-commit hooks
pre-commit install

# Run all checks
make check
```

## License

depcon is licensed under the MIT License. See the LICENSE file for details.

## Changelog

### v0.4.1 (Latest)

- Fixed broken LICENSE link in documentation
- Fixed GitHub Actions workflows to use dependency-groups correctly
- Improved dependency group nesting using PEP 735 `include-group` syntax

### v0.4.0

- New `list` command to list all dependency groups
- New `check` command to check for common issues (duplicates, missing dependencies)
- Enhanced `convert` command with `--use-optional-deps` flag to choose between dependency-groups and optional-dependencies
- Enhanced `convert` command with `--remove-duplicates` flag
- Enhanced `convert` command with `--strict` flag for strict error handling
- Enhanced `show` command with `--group` option to filter by specific dependency group
- Enhanced `validate` command with `--check-pypi` flag
- Default Python version requirement updated to >=3.11
- Improved duplicate dependency detection and removal
- Better error messages and validation output

### v0.3.0

- Full PEP 735 support for dependency-groups
- Proper distinction between dependency-groups (PEP 735) and optional-dependencies (PEP 621)
- New `export` command to export dependencies to requirements.txt format
- New `diff` command to compare dependencies between files
- New `sync` command to sync dependencies from pyproject.toml to requirements files
- Enhanced `show` command to display both dependency-groups and optional-dependencies
- Improved validation for both dependency types
- Updated documentation and examples
- Better uv integration with modern dependency-groups format

### v0.2.1

- Initial release of depcon
- Full PEP 621 support
- Intelligent dependency grouping
- Rich CLI interface
- Multiple build backend support
- Tool integration (uv, hatch, poetry)
- Advanced validation
- Comprehensive test suite

### v0.2.0

- Complete rewrite with modern architecture
- Full PEP 621 support
- Intelligent dependency grouping
- Rich CLI interface
- Advanced validation
- Multiple build backend support
- Tool integration (uv, hatch, poetry)

### v0.1.x (Legacy)

- Basic requirements.txt to pyproject.toml conversion
- Limited feature set
