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
|
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "py-vapid"
version = "1.9.2"
license = {text = "MPL-2.0"}
description = "Simple VAPID header generation library"
readme = "README.rst"
authors = [{name = "JR Conlin", email = "src+vapid@jrconlin.com"}]
keywords = ["vapid", "push", "webpush"]
classifiers = [
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/mozilla-services/vapid"
[project.scripts]
vapid = "py_vapid.main:main"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.setuptools.packages.find]
include = ["py_vapid*"]
|