-
Notifications
You must be signed in to change notification settings - Fork 3
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 #11 from mkelley/infrastructure-update-2024.03
Infrastructure update
- Loading branch information
Showing
7 changed files
with
54 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,4 +105,5 @@ venv.bak/ | |
|
||
*~ | ||
examples/lco.fits | ||
examples/cat.db | ||
examples/cat.db | ||
calviacat/_version.py |
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,4 @@ | ||
prune build | ||
prune docs/_build | ||
prune docs/api | ||
global-exclude *.pyc *.o |
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,5 +1,13 @@ | ||
# Licensed with the MIT License, see LICENSE for details | ||
from importlib.metadata import version as _version, PackageNotFoundError | ||
|
||
from .catalog import * | ||
from .panstarrs1 import PanSTARRS1 | ||
from .skymapper import SkyMapper | ||
from .refcat2 import RefCat2 | ||
from .gaia import Gaia | ||
|
||
try: | ||
__version__ = _version(__name__) | ||
except PackageNotFoundError: | ||
pass |
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,37 @@ | ||
[project] | ||
name = "calviacat" | ||
description = "Calibrate star photometry by comparison to a catalog." | ||
keywords = ["astronomy", "astrophysics", "space", "science"] | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "Michael S. P. Kelley", email = "[email protected]" }, | ||
{ name = "Tim Lister", email = "[email protected]" } | ||
] | ||
license = { text = "MIT" } | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"astropy>=4.3", | ||
"numpy", | ||
"requests", | ||
"astroquery>=0.4.5" | ||
] | ||
dynamic = [ "version" ] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/mkelley/calviacat" | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools>=45", | ||
"setuptools_scm[toml]>=6.2", | ||
"wheel", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
write_to = "calviacat/_version.py" | ||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
|
||
[tool.setuptools.packages.find] |
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,13 +1,4 @@ | ||
#!/usr/bin/env python3 | ||
from setuptools import setup | ||
|
||
setup(name='calviacat', | ||
version='1.3.0', | ||
description='Calibrate star photometry by comparison to a catalog.', | ||
author='Michael S. P. Kelley', | ||
author_email='[email protected]', | ||
url='https://github.com/mkelley/calviacat', | ||
packages=['calviacat'], | ||
install_requires=['astropy', 'numpy', 'requests', 'astroquery'], | ||
license='MIT' | ||
) | ||
setup() |