File: pyproject.toml

package info (click to toggle)
testpath 0.6.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 216 kB
  • sloc: python: 509; makefile: 151; sh: 2
file content (26 lines) | stat: -rw-r--r-- 697 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
[build-system]
requires = ["flit_core >=3.2.0,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "testpath"
authors = [
    {name="Jupyter Development Team", email="jupyter@googlegroups.com"},
]
readme = "README.rst"
requires-python = ">= 3.5"
classifiers = [
    "Intended Audience :: Developers",
    "License :: OSI Approved :: BSD License",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3",
    "Topic :: Software Development :: Testing",
]
dynamic = ["version", "description"]

[project.optional-dependencies]
test = ["pytest"]

[project.urls]
Documentation = "https://testpath.readthedocs.io/en/latest/"
Source = "https://github.com/jupyter/testpath"