Skip to content

Commit

Permalink
pypi-friendly README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
milcent committed Dec 16, 2020
1 parent 2ea8373 commit acc4802
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ Or you can cd into the site-packages subfolder of your python distribution (or e

For a quick start, please go to the [Demo notebook](https://github.com/milcent/benford_py/blob/master/Demo.ipynb), in which I show examples on how to run the tests with the SPY (S&P 500 ETF) daily returns.

For more fine-grained details of the functions and classes, see the [docs](https://benford-py.readthedocs.io/en/latest/index.html).

### Background

The first digit of a number is its leftmost digit.
Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
'''Benfords law module'''
__version__ = "0.3.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Marcel Milcent'

# The full version, including alpha/beta/rc tags
release = '0.3.0'
release = '0.3.1'


# -- General configuration ---------------------------------------------------
Expand Down
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
''' Setup Pyt for benford's module'''
from setuptools import setup

from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(name='benford_py',
version='0.3.0',
version='0.3.1',
description='A library for testing data sets with Bendford\'s Law',
long_description=long_description,
long_description_content_type='text/markdown'.
url='https://github.com/milcent/benford_py',
download_url='https://github.com/milcent/benford_py/archive/v0.3.0.tar.gz',
download_url='https://github.com/milcent/benford_py/archive/v0.3.1.tar.gz',
author='Marcel Milcent',
author_email='marcelmilcent@gmail.com',
license='GPLv3.0',
Expand Down

0 comments on commit acc4802

Please sign in to comment.