diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -1,12 +1,29 @@ +""" + Setup file for SyncRNG + Author: Gertjan van den Burg + Date: Oct. 12, 2016 +""" + + +from os import path from setuptools import setup, find_packages from distutils.extension import Extension +here = path.abspath(path.dirname(__file__)) + +with open(path.join(here, 'README.md'), 'r') as f: + long_description = f.read() + with open(path.join(here, 'README.txt'), 'w') as o: + o.write(long_description) + setup( name='SyncRNG', author='Gertjan van den Burg', + author_email='gertjanvandenburg@gmail.com', version='1.1.0', description='A synchronized Tausworthe RNG for Python and R', + long_description=long_description, url='https://github.com/GjjvdBurg/SyncRNG', license='GPL v2', packages=find_packages(), @@ -20,7 +37,7 @@ setup( keywords='RNG R Python', classifiers=[ 'Intended Audience :: Developers', - 'Indended Audience :: Science/Research', + 'Intended Audience :: Science/Research', 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', |
