forked from gdanezis/petlib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (37 loc) · 1.22 KB
/
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
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
from setuptools import setup
import petlib
setup(name='petlib',
version=petlib.VERSION,
description='A library implementing a number of Privacy Enhancing Technologies (PETs)',
author='George Danezis',
author_email='[email protected]',
url=r'https://pypi.python.org/pypi/petlib/',
packages=['petlib'],
license="2-clause BSD",
long_description="""A library wrapping Open SSL low-level cryptographic libraries to build Privacy Enhancing Technologies (PETs)""",
setup_requires=["cffi>=1.0.0",
"pytest >= 2.6.4"],
package_data = {
"": ["_cffi_src/openssl/*"]
},
include_package_data = True,
tests_require = [
"cffi >= 1.0.0",
"pycparser >= 2.10",
"future >= 0.14.3",
"pytest >= 2.5.0",
"pytest-cov >= 1.8.1",
"msgpack >= 1.0.4",
],
cffi_modules=["petlib/compile.py:_FFI"],
install_requires=[
"cffi >= 1.0.0",
"pycparser >= 2.10",
"future >= 0.14.3",
"pytest >= 2.5.0",
"pytest-cov >= 1.8.1",
"msgpack >= 1.0.4",
],
zip_safe=False,
)