Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove setup #166

Merged
merged 6 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
python3 -m pip install -U setuptools setuptools_scm pep517
python3 -m pip install -e .


- name: Run tests
run: |
python -m unittest discover src
Expand All @@ -42,7 +41,6 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
fail_ci_if_error: true
files: ./coverage1.xml,./coverage2.xml # optional
flags: unittests
name: codecov-umbrella
verbose: true
55 changes: 54 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,60 @@
[build-system]
requires = ["setuptools>=40.6.0", "wheel", "setuptools_scm", "extension_helpers"]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "simmer"

authors = [
{name = "Arjun Savel", email = "[email protected]"},
{name= "Lea Hirsch"},
{name= "Holden Gill"},
{name= "Courtney D. Dressing"},
{name= "David R. Ciardi"}
]
description = "Stellar Image Maturation via Efficient Reduction"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["astronomy"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"numpy",
"tqdm",
"pandas==1.2.3",
"astropy >=5.1",
"openpyxl>=2.5.12",
"scipy",
"matplotlib <3.1.1,>=3.0.1",
"Scikit-image>=0.16.2",
"pyyaml>=5.3.1",
"numba",
"emcee",
"cerberus>=1.3.2",
"photutils>=1.5.0",
]
dynamic = ["version"]

[project.optional-dependencies]
test = ["pytest"]

[project.urls]
Homepage = "https://github.com/arjunsavel/SImMER"
Issues = "https://github.com/arjunsavel/SImMER/issues"
Documentation = "https://simmer.readthedocs.io"



[tool.black]
line-length = 79
exclude = '''
Expand Down
93 changes: 0 additions & 93 deletions setup.py

This file was deleted.

8 changes: 0 additions & 8 deletions src/simmer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1 @@
# -*- coding: utf-8 -*-

__uri__ = "https://simmer.readthedocs.io"
__author__ = "Arjun B. Savel, Lea Hirsch, Holden Gill, Courtney D. Dressing, David R. Ciardi"
__email__ = "[email protected]"
__license__ = "MIT"
__version__ = "1.0.2"
__release__ = "1.0.2"
__description__ = "Stellar Image Maturation via Efficient Reduction"