-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from Caltech-IPAC/FIREFLY-1527-update-package-…
…config FIREFLY-1527: Update the package/build configuration and cleanup
- Loading branch information
Showing
10 changed files
with
76 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
from importlib.metadata import PackageNotFoundError, version | ||
|
||
from .firefly_client import FireflyClient | ||
from .ffws import FFWs | ||
from .env import Env | ||
from .range_values import RangeValues | ||
import pkg_resources | ||
|
||
__version__ = pkg_resources.get_distribution("firefly_client").version | ||
try: | ||
__version__ = version("firefly_client") | ||
except PackageNotFoundError: | ||
# package is not installed | ||
__version__ = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
[build-system] | ||
requires = ["setuptools >= 64.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "firefly_client" | ||
version = "3.0.2" | ||
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" | ||
] |
This file was deleted.
Oops, something went wrong.