-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.11 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.11 KB
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
from distutils.core import setup, Extension
setup(name='rdrand',
version='1.4.9',
description="Python interface to Intel hardware rng",
long_description= "".join(open('rdrandom.rst').readlines()),
author="Chris Stillson",
author_email="stillson@gmail.com",
url='https://github.com/stillson/rdrand',
license="New BSD license",
ext_modules=[Extension('_rdrand', ['rdrand.c'])],
py_modules = ['rdrand'],
keywords = ['rdrand', 'rdseed', "intel","hardware","random","number","generator","rng"],
data_files=[('share', ['rdrandom.rst'])],
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Security :: Cryptography",],
extras_require={
'tests': [],
'docs': [
'sphinx >= 1.4',
'sphinx_rtd_theme']}
)