-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
52 lines (49 loc) · 1.25 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
[build-system]
requires = ["setuptools >= 64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "firefly_client"
version = "3.2.0"
description = "Python API for Firefly: display astronomical data as tables, images, charts, and more!"
authors = [
{name = "IPAC LSST SUIT"}
]
readme = "README.md"
license = {file = "License.txt"}
requires-python = ">=3.8"
dependencies = [
"websocket-client",
"requests"
]
keywords = [
"jupyter",
"firefly",
"caltech",
"ipac",
"astronomy",
"visualization",
"images",
"charts",
"tables"
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Framework :: Jupyter",
"Framework :: Jupyter :: JupyterLab",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
[project.urls]
Homepage = "https://github.com/Caltech-IPAC/firefly_client"
Documentation = "https://caltech-ipac.github.io/firefly_client"
Repository = "http://github.com/Caltech-IPAC/firefly_client.git"
[project.optional-dependencies]
docs = [
"Sphinx~=7.1.0",
"sphinx-automodapi",
"pydata-sphinx-theme",
"myst-parser"
]