File: pyproject.toml

package info (click to toggle)
legacycrypt 0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: python: 224; makefile: 4
file content (27 lines) | stat: -rw-r--r-- 976 bytes parent folder | download | duplicates (2)
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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"

[tool.flit.metadata]
module = "legacycrypt"
author = "Christian Heimes"
author-email = "christian@python.org"
maintainer = "Christian Heimes"
maintainer-email = "christian@python.org"
home-page = "https://github.com/tiran/legacycrypt"
description-file = "README.md"
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Programming Language :: Python :: 3.6",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3 :: Only",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: Implementation :: PyPy",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: Python Software Foundation License",
    "Operating System :: POSIX",
    "Topic :: Security :: Cryptography"
]
# 3.5 for pypy3. It supports f"" but not 10_000.
requires-python = ">=3.5"