Skip to content

Commit

Permalink
v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasstolker committed Sep 26, 2024
1 parent 96f4471 commit 44a80dd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ help:
@echo "clean - remove artifacts"

pypi:
python setup.py sdist bdist_wheel
python -m build
twine upload dist/*

pypi-test:
python setup.py sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
python -m build
twine upload --repository testpypi dist/*

docs:
rm -rf docs/api
Expand Down
2 changes: 1 addition & 1 deletion pycrires/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__author__ = 'Tomas Stolker'
__license__ = 'MIT'
__version__ = '0.3.2'
__version__ = '0.3.3'
__maintainer__ = 'Tomas Stolker'
__email__ = '[email protected]'
__status__ = 'Development'
16 changes: 5 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
[build-system]
requires = ["setuptools", "wheel"]
requires = ["setuptools>=61.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"

[project]
name = "pycrires"
version = "0.3.2"
version = "0.3.3"
authors = [
{name = "Tomas Stolker", email = "[email protected]"},
{name = "Rico Landman", email = "[email protected]"},
]
description = "Data reduction pipeline for VLT/CRIRES+"
readme = "README.rst"
requires-python = ">=3.9"
requires-python = ">=3.9,<3.12"
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
Expand All @@ -27,12 +25,8 @@ Documentation = "https://pycrires.readthedocs.io"
Repository = "https://github.com/tomasstolker/pycrires"
Issues = "https://github.com/tomasstolker/pycrires/issues"

[tool.setuptools]
packages = []
py-modules = []

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

[tool.setuptools.package-data]
example = ["keywords.txt", "calib_data/*.txt", "calib_data/*.dat"]
example = ["*.txt", "*.dat"]

0 comments on commit 44a80dd

Please sign in to comment.