-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.17 KB
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
# See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gsp"
version = "2024.7.1"
dependencies = [
"numpy",
"matplotlib",
"pyyaml",
# Needed for testing
"pytest",
# Needed for documentation
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"markdown-exec", # markdown-exec - Needed by mkdocs build
]
requires-python = ">=3.11"
authors = [
{name = "Nicolas P. Rougier", email = "nicolas.rougier@gmail.com"}
]
maintainers = [
{name = "Nicolas P. Rougier", email = "nicolas.rougier@gmail.com"}
]
description = "Graphic Server Protocol"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["scientific", "graphics", "visualization", "dataviz",
"vispy", "matplotlib", "vulkan", "gpu", "3d"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.urls]
# Homepage = "https://vispy.org/gsp"
# Documentation = "https://readthedocs.org"
Repository = "https://github.com/vispy/gsp.git"
Bug-Tracker = "https://github.com/vispy/gsp/issues"
Changelog = "https://github.com/me/spam/blob/master/CHANGELOG"