File: pyproject.toml

package info (click to toggle)
httpbin 0.10.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 600 kB
  • sloc: python: 1,762; sh: 16; xml: 16; makefile: 8
file content (53 lines) | stat: -rw-r--r-- 1,428 bytes parent folder | download
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
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project.urls]
pypi = "https://pypi.org/project/httpbin/"
Repository = "https://github.com/psf/httpbin"

[project]
name = "httpbin"
version = "0.10.2"
requires-python = ">=3.7"
description = "HTTP Request and Response Service"
readme = "README.md"
license = {text = "MIT or ISC"}
authors = [
    {name = "Kenneth Reitz", email = "me@kennethreitz.org"},
]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "Natural Language :: English",
    "License :: OSI Approved :: ISC License (ISCL)",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
]
dependencies = [
    "brotlicffi",
    "decorator",
    "flasgger",
    "flask >= 2.2.4",
    'greenlet < 3.0; python_version<"3.12"',
    'greenlet >= 3.0.0a1; python_version>="3.12.0rc0"',
    'importlib-metadata; python_version<"3.8"',
    "werkzeug >= 2.2.2",
]

[project.optional-dependencies]
test = ["pytest", "tox"]
mainapp = [
    "gunicorn",
    "gevent",
]

[tool.setuptools.packages.find]
where = ["."]
include = ["httpbin*"]