-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Update docs
Showing
20 changed files
with
180 additions
and
133 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node: $Format:%H$ | ||
node-date: $Format:%cI$ | ||
describe-name: $Format:%(describe:tags=true,match=*[0-9]*)$ |
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 @@ | ||
.git_archival.txt export-subst |
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
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,8 +1,6 @@ | ||
prune docs | ||
prune tests | ||
prune examples | ||
exclude requirements.txt | ||
exclude requirements-dev.txt | ||
exclude .readthedocs.yml | ||
exclude .gitignore | ||
exclude .coveragerc | ||
exclude .git_archival.txt | ||
exclude .gitattributes |
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,48 @@ | ||
help: | ||
@echo "Commands:" | ||
@echo "" | ||
@echo " install install in editable mode" | ||
@echo " dev-install install in editable mode with dev requirements" | ||
@echo " pytest run the test suite and report coverage" | ||
@echo " flake8 style check with flake8" | ||
@echo " html build docs (update existing)" | ||
@echo " html-clean build docs (new, removing any existing)" | ||
@echo " preview renders docs in Browser" | ||
@echo " linkcheck check all links in docs" | ||
@echo " clean clean up all generated files" | ||
@echo "" | ||
|
||
install: | ||
python -m pip install -e . | ||
|
||
dev-install: | ||
python -m pip install -e .[all] | ||
|
||
.ONESHELL: | ||
pytest: | ||
rm -rf .coverage htmlcov/ .pytest_cache/ | ||
pytest --cov=pyfftlog --mpl | ||
coverage html | ||
|
||
flake8: | ||
flake8 docs/conf.py pyfftlog/ tests/ examples/ | ||
|
||
html: | ||
cd docs && make html | ||
|
||
html-clean: | ||
cd docs && rm -rf examples/* _build/ && make html | ||
|
||
preview: | ||
xdg-open docs/_build/html/index.html | ||
|
||
linkcheck: | ||
cd docs && make linkcheck | ||
|
||
clean: | ||
python -m pip uninstall pyfftlog -y | ||
rm -rf build/ dist/ .eggs/ pyfftlog.egg-info/ pyfftlog/version.py # build | ||
rm -rf */__pycache__/ */*/__pycache__/ # python cache | ||
rm -rf .coverage htmlcov/ .pytest_cache/ # tests and coverage | ||
rm -rf docs/_build/ docs/examples/* # docs | ||
rm docs/sg_execution_times.rst |
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
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
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,67 @@ | ||
[build-system] | ||
requires = ["setuptools>=64", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pyfftlog" | ||
description = "Logarithmic Fast Fourier Transform" | ||
readme = "README.rst" | ||
requires-python = ">=3.10" | ||
authors = [ | ||
{name = "The emsig community", email = "info@emsig.xyz"}, | ||
] | ||
dependencies = [ | ||
"numpy", | ||
"scipy>=1.10", | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", | ||
"Programming Language :: Python", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.license] | ||
file = "LICENSE" | ||
|
||
[project.urls] | ||
Homepage = "https://pyfftlog.rtfd.io" | ||
Documentation = "https://pyfftlog.rtfd.io" | ||
Repository = "https://github.com/emsig/pyfftlog" | ||
|
||
[project.optional-dependencies] | ||
docs = [ | ||
"ipympl", | ||
"sphinx", | ||
"empymod", | ||
"numpydoc", | ||
"ipykernel", | ||
"matplotlib", | ||
"pickleshare", | ||
"sphinx_gallery", | ||
"sphinx-rtd-theme", | ||
] | ||
tests = [ | ||
"flake8", | ||
"pytest", | ||
"coveralls", | ||
"pytest_cov", | ||
"flake8-pyproject", | ||
] | ||
all = [ | ||
"pyfftlog[docs]", | ||
"pyfftlog[tests]", | ||
] | ||
build = [ | ||
"setuptools_scm>=8", | ||
"setuptools>=64", | ||
] | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["pyfftlog*"] | ||
|
||
[tool.setuptools_scm] | ||
version_file = "pyfftlog/version.py" | ||
|
||
[tool.coverage.run] | ||
relative_files = true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.