Skip to content

Commit

Permalink
Oops. Need to try installing first
Browse files Browse the repository at this point in the history
  • Loading branch information
stillson committed Dec 15, 2013
1 parent 394df34 commit 03d2995
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion setup.rst → rdrandom.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
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="[email protected]",
url='https://github.com/stillson/rdrand',
license="New BSD license",
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",
Expand Down

0 comments on commit 03d2995

Please sign in to comment.