File: pyproject.toml

package info (click to toggle)
python-py-vapid 1.9.2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 236 kB
  • sloc: python: 687; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 777 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
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*"]