|
| 1 | +[build-system] |
| 2 | +build-backend = "setuptools.build_meta" |
| 3 | +requires = ["setuptools"] |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "podman-compose" |
| 7 | +authors = [ |
| 8 | + { email = "alsadi@gmail.com", name = "Muayyad Alsadi" }, |
| 9 | +] |
| 10 | +description = "A script to run docker-compose.yml using podman" |
| 11 | +dependencies = [ |
| 12 | + "python-dotenv", |
| 13 | + "pyyaml", |
| 14 | +] |
| 15 | +requires-python = ">=3.9" |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 3 - Alpha", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Operating System :: OS Independent", |
| 20 | + "Programming Language :: Python", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3.9", |
| 23 | + "Programming Language :: Python :: 3.10", |
| 24 | + "Programming Language :: Python :: 3.11", |
| 25 | + "Programming Language :: Python :: 3.12", |
| 26 | + "Programming Language :: Python :: 3.13", |
| 27 | + "Topic :: Software Development :: Build Tools", |
| 28 | +] |
| 29 | +keywords = [ |
| 30 | + "podman", |
| 31 | + "podman-compose", |
| 32 | +] |
| 33 | +license = "GPL-2.0-only" |
| 34 | +dynamic = ["version", "readme"] |
| 35 | + |
| 36 | +[project.urls] |
| 37 | +homepage = "https://github.com/containers/podman-compose" |
| 38 | + |
| 39 | +[project.optional-dependencies] |
| 40 | +devel = [ |
| 41 | + "coverage", |
| 42 | + "parameterized", |
| 43 | + "pre-commit", |
| 44 | + "ruff", |
| 45 | +] |
| 46 | + |
| 47 | +[project.scripts] |
| 48 | +podman-compose = "podman_compose:main" |
| 49 | + |
| 50 | +[tool.setuptools] |
| 51 | +py-modules = ["podman_compose"] |
| 52 | + |
| 53 | +[tool.setuptools.dynamic] |
| 54 | +readme = {file = ["README.md"], content-type = "text/markdown"} |
| 55 | +version = {attr = "podman_compose.__version__"} |
| 56 | + |
1 | 57 | [tool.ruff] |
2 | 58 | line-length = 100 |
3 | 59 | target-version = "py38" |
|
0 commit comments