Metadata-Version: 2.1
Name: docker-composition
Version: 0.0.2
Summary: Docker-compose package manager
Project-URL: Homepage, http://fake.com
Author-email: sam <sam@fake.com>
Requires-Dist: fire
Description-Content-Type: text/markdown

# Installation

# .deb Creation
Install
`sudo apt-get install python3-stdeb`


# Project setup 
Using hatch as a tool to manage package:
https://hatch.pypa.io/latest/intro/

`hatch new composition`

## Publishing

Ensured the `pyproject.toml` looked like this:
```toml
[build-system]
requires = [
    "hatchling>=1.7.0",
]
build-backend = "hatchling.build"

[project]
name = "composition"
description = "Docker-compose package manager"
readme = "README.md"
license = ""
authors = [
    { name = "sam", email = "sam@fake.com" },
]
dependencies = [
    "fire",
]
dynamic = [
    "version",
]

[project.scripts]
composition = "composition.composition:entrypoint"

[project.urls]
Homepage = "http://fake.com"

[tool.hatch.version]
path = "composition/__init__.py"

[tool.hatch.build.targets.sdist]
include = [
    "/composition",
]
```

`sudo hatch build && sudo hatch publish`