-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from LRydin/dev
Bumping to version 0.4.1
- Loading branch information
Showing
6 changed files
with
21 additions
and
29 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
from .kernels import epanechnikov, gaussian, uniform, silvermans_rule | ||
from .kernels import epanechnikov, silvermans_rule | ||
from .kmc import km | ||
|
||
name = "kramersmoyal" | ||
__name__ = 'kramersmoyal' | ||
__version__ = '0.4.1' | ||
__author__ = 'Leonardo Rydin Gorjão and Francisco Meirinhos' | ||
__copyright__ = 'Copyright 2019–2023 Leonardo Rydin Gorjão, MIT License' |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
setuptools.setup( | ||
name="kramersmoyal", | ||
version="0.4.1", | ||
author="Leonardo Rydin Gorjao and Francisco Meirinhos", | ||
author="Leonardo Rydin Gorjão and Francisco Meirinhos", | ||
author_email="[email protected]", | ||
description="Calculate Kramers-Moyal coefficients for stochastic process of any dimension, up to any order.", | ||
long_description=long_description, | ||
|
@@ -18,5 +18,5 @@ | |
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3', | ||
python_requires='>=3.7', | ||
) |