diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..3653f05 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,36 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "mirva" +dynamic = ["version"] +description = 'Static image gallery' +requires-python = ">=3.8" +license = "MIT" +keywords = [] +authors = [ + { name = "Q", email = "q@six9.net" }, +] +classifiers = [ + "Development Status :: 4 - Beta", + "Programming Language :: Python", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", +] +dependencies = ["tqdm"] + +[project.scripts] +mirva = "mirva:main" +mirva-recursive="mirva:recursive_main" + +[tool.hatch.version] +path = "mirva/__init__.py" + +[tool.hatch.build.targets.wheel] +packages = ["mirva"]