summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 465193e55035eb4974042700484e19475aba2c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[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.9"

[project.optional-dependencies]
pretty-log = ["rich"]
wkd-refresh = ["requests"]
test = ["pytest"]
test-full = [
    "pytest",
    "requests",
    "responses",
]

[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",
]