Metadata-Version: 1.2
Name: numpy-fracadf
Version: 0.2.0
Summary: Determine fractal order by the ADF test
Home-page: http://github.com/ulf1/fracadf
Author: Ulf Hamster
Author-email: 554c46@gmail.com
License: MIT
Description: # fracadf
        Determine fractal order by the ADF test
        
        ## Installation 
        The `numpy-fracadf` [git repo](http://github.com/ulf1/numpy-fracadf) is available as [PyPi package](https://pypi.org/project/numpy-fracadf)
        
        ```
        pip install numpy-fracadf
        pip install git+ssh://git@github.com/ulf1/numpy-fracadf.git
        ```
        
        
        ## Usage
        Check the [examples](http://github.com/ulf1/numpy-fracadf/examples) folder for notebooks.
        
        
        ## Commands
        Install a virtual env
        
        ```
        python3.6 -m venv .venv
        source .venv/bin/activate
        pip3 install --upgrade pip
        pip3 install -r requirements.txt
        ```
        
        Python commands
        
        * Jupyter for the examples: `jupyter lab`
        * Check syntax: `flake8 --ignore=F401 --exclude=$(grep -v '^#' .gitignore | xargs | sed -e 's/ /,/g')`
        * Upload to PyPi with twine: `python setup.py sdist && twine upload -r pypi dist/*`
        
        Clean up
        ```
        find . -type f -name "*.pyc" | xargs rm
        find . -type d -name "__pycache__" | xargs rm -r
        rm -r .pytest_cache
        rm -r .venv
        ```
        
Platform: UNKNOWN
Requires-Python: >=3.6
