forked from ThalesGroup/pycryptoki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·22 lines (20 loc) · 742 Bytes
/
setup.py
File metadata and controls
executable file
·22 lines (20 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
Script used by distutils to automatically generate a source code
distribution of this python module (a .tar.gz file containing
all of the source code).
To generate this file run:
python setup.py sdist
"""
from setuptools import setup
setup(name='pycryptoki',
description="A python wrapper around the C cryptoki library.",
author='Ashley Straw',
url='https://github.com/gemalto/pycryptoki',
version='2.1.1',
packages=['pycryptoki',
'pycryptoki.daemon',
'pycryptoki.mechanism'],
scripts=['pycryptoki/daemon/rpyc_pycryptoki.py'],
tests_require=['pytest', 'hypothesis', 'mock', 'pytz'],
install_requires=['future', 'rpyc', 'six']
)