From 735fb85228aad0fa5326f4235e349e360631823c Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Fri, 11 Feb 2022 17:31:29 +0100 Subject: Switch to flit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- pyproject.toml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2511cec --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,34 @@ +[build-system] +requires = ["flit_core >=3.2,<4"] +build-backend = "flit_core.buildapi" + +[project] +name = "gemato" +authors = [{name = "Michał Górny", email = "mgorny@gentoo.org"}] +license = {file = "COPYING"} +readme = "README.rst" +dynamic = ["version", "description"] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Environment :: Console", + "Intended Audience :: System Administrators", + "License :: OSI Approved :: BSD License", + "Operating System :: POSIX", + "Programming Language :: Python :: 3 :: Only", + "Topic :: Security :: Cryptography", +] +requires-python = ">=3.6" + +[project.urls] +Homepage = "https://github.com/mgorny/gemato/" + +[project.scripts] +gemato = "gemato.cli:setuptools_main" + +[tool.flit.sdist] +include = [ + "bin/gemato", + "tox.ini", + "tests/*.py", + "utils", +] -- cgit v1.2.3