Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[build-system]
requires = [
"hatchling>=1.6.0",
]
build-backend = "hatchling.build"

[project]
name = "docky"
description = "Make developpement with docker simply"
readme = "README.rst"
license = "AGPLv3+"
authors = [
{ name = "Akretion", email = "[email protected]" },
]
classifiers = [
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
dependencies = [
"# Only for solving installation issue with pip that fail to",
"# solve the version of request compatible with docker and docker-compose",
"copier @ git+https://github.com/hparfr/copier@vcs_branch22-04#egg=copier",
"docker-compose>=1.23.1",
"importlib-metadata; python_version >= '3.10'",
"plumbum",
"python-slugify",
"rainbow_logging_handler",
"requests<3,>=2.20.0",
]
dynamic = [
"version",
]

[project.urls]
Homepage = "https://github.com/akretion/docky/"

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

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