-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
32 lines (30 loc) · 912 Bytes
/
setup.py
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
30
31
32
"""
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.6.6",
packages=[
"pycryptoki",
"pycryptoki.cryptoki",
"pycryptoki.daemon",
"pycryptoki.mechanism",
"pycryptoki.ca_extensions",
],
scripts=["pycryptoki/daemon/rpyc_pycryptoki.py"],
tests_require=["pytest", "hypothesis", "mock", "pytz"],
install_requires=[
"future",
"rpyc==3.4.4;python_version<='2.7'",
"rpyc==6.0.0;python_version>'3'",
"six==1.16.0",
],
)