diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 34 |
1 files changed, 34 insertions, 0 deletions
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", +] |