-
-
Notifications
You must be signed in to change notification settings - Fork 2
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 #31 from ulf1/dev
Fixes
- Loading branch information
Showing
8 changed files
with
41 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,4 +108,5 @@ venv.bak/ | |
.vscode | ||
profile/data* | ||
|
||
examples/data | ||
examples/data | ||
README.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include README.md | ||
include README.rst | ||
recursive-include test *.py |
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,3 +1,3 @@ | ||
__version__ = '0.3.2' | ||
__version__ = '0.3.3' | ||
|
||
from .fracdiff_fn import fracdiff |
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,5 @@ | ||
# syntax check, unit test, profiling | ||
setuptools>=56.0.0 | ||
flake8>=3.8.4 | ||
pytest>=6.2.1 | ||
twine==3.3.0 | ||
|
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,5 +1,11 @@ | ||
from setuptools import setup | ||
import pypandoc | ||
import os | ||
|
||
|
||
def read(fname): | ||
with open(os.path.join(os.path.dirname(__file__), fname)) as fp: | ||
s = fp.read() | ||
return s | ||
|
||
|
||
def get_version(path): | ||
|
@@ -15,14 +21,13 @@ def get_version(path): | |
setup(name='numpy-fracdiff', | ||
version=get_version("numpy_fracdiff/__init__.py"), | ||
description='Fractional Difference for Time Series', | ||
long_description=pypandoc.convert('README.md', 'rst'), | ||
long_description=read('README.rst'), | ||
url='http://github.com/ulf1/numpy-fracdiff', | ||
author='Ulf Hamster', | ||
author_email='[email protected]', | ||
license='MIT', | ||
license='Apache License 2.0', | ||
packages=['numpy_fracdiff'], | ||
install_requires=[ | ||
'setuptools>=40.0.0', | ||
'numpy>=1.18.*,<2', | ||
'numba>=0.48.*'], | ||
python_requires='>=3.6', | ||
|