-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
42 lines (38 loc) · 1.15 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
42
#!/usr/bin/env python
from setuptools import setup
import bplib
setup(name='bplib',
version=bplib.VERSION,
description='A bilinear pairing library for petlib.',
author='George Danezis',
author_email='[email protected]',
url=r'https://pypi.python.org/pypi/bplib/',
packages=['bplib'],
license="LGPL",
long_description=bplib.__doc__,
setup_requires=["cffi>=1.0.0",
"pytest >= 2.6.4",
"petlib >= 0.0.45"],
package_data = {
"bplib": ["include/*.h"]},
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",
"petlib >= 0.0.43"
],
cffi_modules=["bplib/compile.py:ffibuilder"],
install_requires=[
"cffi >= 1.0.0",
"pycparser >= 2.10",
"future >= 0.14.3",
"pytest >= 2.5.0",
"pytest-cov >= 1.8.1",
"msgpack-python >= 0.4.6",
"petlib >= 0.0.43"
],
zip_safe=False,
)