Skip to content

Commit

Permalink
Make sure we define qt and always install all dependencies for glue-core
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Dec 4, 2024
1 parent 4492247 commit 7b3845a
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 47 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,5 @@ glue/qt/glue_qt_resources.py
# Eclipse editor project files
.project
.pydevproject
.settings
.settings
.eggs
56 changes: 52 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,55 @@
[build-system]
requires = ["setuptools",
"setuptools_scm",
"wheel"]
build-backend = 'setuptools.build_meta'
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 = "[email protected]" },
]
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]
26 changes: 0 additions & 26 deletions setup.cfg

This file was deleted.

16 changes: 0 additions & 16 deletions setup.py

This file was deleted.

0 comments on commit 7b3845a

Please sign in to comment.