diff --git a/setup.rst b/rdrandom.rst similarity index 88% rename from setup.rst rename to rdrandom.rst index 2b52ccf..553cdbb 100644 --- a/setup.rst +++ b/rdrandom.rst @@ -25,5 +25,7 @@ Works with 32 and 64 bit builds of python. Works with python2 and python3. -Planned for version 2: various mitigations to whiten the random numbers in case you don't trust Intel. +planned for version 1.5: whitening added, written in python + +Planned for version 2: whitening added, backwards compatible with 1.5, but written in C. diff --git a/setup.py b/setup.py index bbd0bb8..f028c29 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,9 @@ from distutils.core import setup, Extension setup(name='rdrand', - version='0.9.9', + version='1.0.1', description="Python interface to Intel hardware rng", - long_description= "".join(open('setup.rst').readlines()), + long_description= "".join(open('rdrandom.rst').readlines()), author="Chris Stillson", author_email="stillson@gmail.com", url='https://github.com/stillson/rdrand', @@ -11,6 +11,7 @@ ext_modules=[Extension('_rdrand', ['rdrand.c'])], py_modules = ['rdrand',], keywords = ["intel","hardware","random","number","generator","rng"], + data_files=[('share', ['rdrandom.rst'])], classifiers = ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research",