-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python >= 3.7, to keep up with NEP29 stack, src/ layout
- Loading branch information
Showing
21 changed files
with
38 additions
and
168 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
- run: pip install .[tests,lint] | ||
|
||
- run: flake8 | ||
- run: mypy . | ||
- run: mypy | ||
|
||
- run: pytest | ||
|
||
|
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,10 +1,11 @@ | ||
[mypy] | ||
files = src/ | ||
|
||
ignore_missing_imports = True | ||
strict_optional = False | ||
allow_redefinition = True | ||
show_error_context = False | ||
show_column_numbers = True | ||
warn_unreachable = False | ||
|
||
[mypy-xarray] | ||
follow_imports = skip |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = astrometry_azel | ||
version = 1.2.7 | ||
version = 1.3.0 | ||
author = Michael Hirsch, Ph.D. | ||
author_email = [email protected] | ||
description = Register images to az/el using the astrometry.net program | ||
|
@@ -15,18 +15,15 @@ classifiers = | |
Environment :: Console | ||
Intended Audience :: Science/Research | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3 | ||
Topic :: Scientific/Engineering :: Atmospheric Science | ||
license_files = | ||
LICENSE.txt | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
|
||
[options] | ||
python_requires = >= 3.6 | ||
python_requires = >= 3.7 | ||
include_package_data = True | ||
packages = find: | ||
zip_safe = False | ||
|
@@ -35,6 +32,11 @@ install_requires = | |
numpy | ||
astropy | ||
xarray | ||
package_dir= | ||
=src | ||
|
||
[options.packages.find] | ||
where=src | ||
|
||
[options.extras_require] | ||
tests = | ||
|
@@ -44,7 +46,7 @@ lint = | |
flake8-bugbear | ||
flake8-builtins | ||
flake8-blind-except | ||
mypy | ||
mypy >= 0.800 | ||
all = | ||
scikit-image | ||
scipy | ||
|
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,4 +1,8 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup | ||
#!/usr/bin/env python3 | ||
import site | ||
import setuptools | ||
|
||
setup() | ||
# PEP517 workaround | ||
site.ENABLE_USER_SITE = True | ||
|
||
setuptools.setup() |
File renamed without changes.
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
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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