-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (48 loc) · 1.23 KB
/
pyproject.toml
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
54
55
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.2",
"setuptools-scm",
]
[project]
name = "glueviz"
description = "Multidimensional data visualization across files"
readme = "README.rst"
authors = [
{ name = "Glue developers", email = "glueviz@gmail.com" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering :: Visualization",
]
dynamic = [
"version",
]
dependencies = [
"glue-core[all]>=1.1",
"glue-qt>=0.1",
"glue-vispy-viewers>=1.0.3",
]
[project.urls]
homepage = "https://www.glueviz.org/"
documentation = "https://docs.glueviz.org"
repository = "https://github.com/glue-viz"
[project.optional-dependencies]
qt = [
"PyQt5>=5.14"
]
[tool.setuptools]
zip-safe = true
include-package-data = false
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools_scm]