-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
54 lines (47 loc) · 1.1 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
[build-system]
requires = [
"setuptools>=61.2",
"setuptools_scm",
]
build-backend = "setuptools.build_meta"
[project]
name = "glue-wwt"
authors = [{name = "Thomas Robitaille", email = "[email protected]"}]
license = {text = "BSD 3-Clause License"}
description = "Glue WorldWide Telescope plugin"
readme = "README.rst"
urls = {Homepage = "https://github.com/glue-viz/glue-wwt"}
requires-python = ">=3.8"
dependencies = [
"numpy",
"glue-core>=1.13.1",
"echo",
"astropy",
"pywwt>=0.24.1",
"packaging",
]
dynamic = ["version"]
[tool.setuptools_scm]
[project.entry-points]
"glue.plugins" = {wwt = "glue_wwt:setup"}
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"mock",
]
qt = [
"qtpy",
"glue-qt",
'PyQt5;python_version>="3"',
'PyQtWebEngine;python_version>="3"',
]
[tool.setuptools]
zip-safe = false
license-files = ["LICENSE"]
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools.package-data]
"glue_wwt.viewer" = ["*.ui", "*.html", "*.js", "*.png"]
"glue_wwt.viewer.tests" = ["data/*.glu"]