-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dependency update and code re-organization
- Loading branch information
Showing
30 changed files
with
482 additions
and
400 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 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,2 +1,2 @@ | ||
#! /bin/bash | ||
_sbnsis start --dev | ||
sbnsis start --dev |
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 |
---|---|---|
|
@@ -2,23 +2,24 @@ | |
name = "sbn-survey-image-service" | ||
description = "Serves images and cutouts via REST API." | ||
readme = "readme.md" | ||
authors = [ | ||
{ name = "Michael S. P. Kelley", email = "[email protected]" } | ||
] | ||
authors = [{ name = "Michael S. P. Kelley", email = "[email protected]" }] | ||
license = { text = "BSD 3-Clause License" } | ||
dynamic = ["version"] | ||
requires-python = ">= 3.10" | ||
|
||
dependencies = [ | ||
"Flask>=3.0", | ||
"Flask-Cors>=4.0", | ||
"gunicorn>=21", | ||
"connexion>=3.0", | ||
"swagger-ui-bundle>1.0", | ||
"astropy>=6.0", | ||
"connexion[flask,swagger-ui,uvicorn]~=3.0", | ||
"gunicorn~=21.2", | ||
"pds4_tools==1.3", | ||
"SQLAlchemy>=2.0", | ||
"python-dotenv>1.0", | ||
"pytest-remotedata>=0.4", | ||
"python-dotenv~=1.0", | ||
"SQLAlchemy>=2.0", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
recommended = ["psycopg2-binary>=2.8"] | ||
dev = ["autopep8", "mypy", "pycodestyle", "pytest>=7.0", "pytest-cov>=3.0"] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/Small-Bodies-Node/sbn-survey-image-service" | ||
|
@@ -28,20 +29,13 @@ requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"] | |
build-backend = 'setuptools.build_meta' | ||
|
||
[tool.setuptools_scm] | ||
write_to = "sbn_survey_image_service/_version.py" | ||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
|
||
[tool.setuptools.packages.find] | ||
|
||
[project.optional-dependencies] | ||
recommended = [ | ||
"psycopg2-binary>=2.8", | ||
] | ||
dev = [ | ||
"autopep8", | ||
"mypy", | ||
"pycodestyle", | ||
"pytest>=7.0", | ||
"pytest-cov>=3.0", | ||
] | ||
[project.scripts] | ||
sbnsis = "sbn_survey_image_service.scripts.sbnsis:__main__" | ||
sbnsis-add = "sbn_survey_image_service.data.add:__main__" |
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,16 @@ | ||
# file generated by setuptools_scm | ||
# don't change, don't track in version control | ||
TYPE_CHECKING = False | ||
if TYPE_CHECKING: | ||
from typing import Tuple, Union | ||
VERSION_TUPLE = Tuple[Union[int, str], ...] | ||
else: | ||
VERSION_TUPLE = object | ||
|
||
version: str | ||
__version__: str | ||
__version_tuple__: VERSION_TUPLE | ||
version_tuple: VERSION_TUPLE | ||
|
||
__version__ = version = '0.2.0.dev12+gf2ddedd.d20240821' | ||
__version_tuple__ = version_tuple = (0, 2, 0, 'dev12', 'gf2ddedd.d20240821') |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.