Skip to content

Commit d33abd9

Browse files
authored
Merge pull request #77 from pavelkomarov/master
sorry to touch so many files
2 parents 17fb302 + 55e80e4 commit d33abd9

40 files changed

Lines changed: 587 additions & 1081 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,4 @@ __pycache__
116116
dist
117117
*.whl
118118
.vscode
119+
docs/build

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ Python methods for numerical differentiation of noisy data, including multi-obje
99
</p>
1010

1111
<p align="center">
12-
<a href="#travis" alt="Travis Build Status">
13-
<img src="https://travis-ci.com/florisvb/PyNumDiff.svg?branch=master"/></a>
1412
<a href='https://pynumdiff.readthedocs.io/en/master/?badge=master'>
1513
<img src='https://readthedocs.org/projects/pynumdiff/badge/?version=master' alt='Documentation Status' /></a>
1614
<a href="https://badge.fury.io/py/pynumdiff">
@@ -86,9 +84,8 @@ For more details, refer to [this paper](https://doi.org/10.1109/ACCESS.2020.3034
8684
|- index.rst
8785
|- ...
8886
|- .gitignore
89-
|- .travis.yml
9087
|- LICENSE.txt
91-
|- requirements.txt
88+
|- pyproject.toml
9289

9390
## Citation
9491

@@ -125,7 +122,7 @@ See CITATION.cff file as well as the following references.
125122
### Prerequisite
126123

127124
PyNumDiff requires common packages like `numpy`, `scipy`, `matplotlib`, `pytest` (for unittests), `pylint`
128-
(for PEP8 style check). For a full list, you can check the file [requirements.txt](requirements.txt)
125+
(for PEP8 style check). For a full list, you can check the file [pyproject.toml](pyproject.toml)
129126

130127
In addition, it also requires certain additional packages for select functions, though these are not required for a successful install of PyNumDiff:
131128
* Total Variation Regularization methods: [`cvxpy`](http://www.cvxpy.org/install/index.html)

docs/requirements.txt

Lines changed: 0 additions & 75 deletions
This file was deleted.

docs/source/LICENSE.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ The MIT License (MIT)
66
Copyright (c) 2021
77
Floris van Breugel, The University of Nevada, Reno, Mechanical Engineering Department
88
Yuying Liu, The University of Washington Applied Math Department
9+
Pavel Komarov, Univerity of Washington Electrical and Computer Engineering
910

1011
Permission is hereby granted, free of charge, to any person obtaining a copy
1112
of this software and associated documentation files (the "Software"), to deal

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
# -- Project information -----------------------------------------------------
2121

2222
project = 'PyNumDiff'
23-
copyright = '2021, Floris van Breugel, Yuying Liu'
24-
author = 'Floris van Breugel, Yuying Liu'
23+
copyright = '2025, Floris van Breugel, Yuying Liu, Pavel Komarov'
24+
author = 'Floris van Breugel, Yuying Liu, Pavel Komarov'
2525

2626
# The full version, including alpha/beta/rc tags
2727
release = '0.1.2'

docs/source/finite_difference.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
finite_difference
22
=================
33

4-
.. toctree::
5-
:maxdepth: 1
6-
7-
finite_difference/_finite_difference
4+
.. automodule:: pynumdiff.finite_difference
5+
:members:

docs/source/finite_difference/_finite_difference.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/source/index.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,8 @@ Structure
8181
|- ...
8282
|- setup.py
8383
|- .gitignore
84-
|- .travis.yml
8584
|- LICENSE.txt
86-
|- requirements.txt
85+
|- pyproject.toml
8786

8887
Getting Started
8988
---------------

docs/source/kalman_smooth.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
kalman_smooth
22
=============
33

4-
.. toctree::
5-
:maxdepth: 1
6-
7-
kalman_smooth/_kalman_smooth
4+
.. automodule:: pynumdiff.kalman_smooth
5+
:members:

docs/source/kalman_smooth/_kalman_smooth.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)