summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-02-11 17:31:29 +0100
committerMichał Górny <mgorny@gentoo.org>2022-02-11 17:31:55 +0100
commit735fb85228aad0fa5326f4235e349e360631823c (patch)
tree74667b1cc651337df06054d5574a61390e0f05b6 /pyproject.toml
parent60b537c2bf2f9d1b9467d173681241c51b58ead2 (diff)
downloadgemato-735fb85228aad0fa5326f4235e349e360631823c.tar.gz
Switch to flit
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml34
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",
+]