-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
38 lines (36 loc) · 1.42 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
''' Setup for benford's module'''
from os import path
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README-pypi.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='benford_py',
version='0.5.0',
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.5.0.tar.gz',
author='Marcel Milcent',
author_email='marcelmilcent@gmail.com',
license='BSD 3-Clause',
packages=['benford'],
install_requires=[
'pandas',
'numpy',
'matplotlib',
],
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Other Audience',
'Topic :: Office/Business :: Financial :: Accounting',
'Topic :: Scientific/Engineering :: Mathematics',
],)