-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
41 lines (38 loc) · 1.16 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 loopix
setup(name='loopix',
version=loopix.VERSION,
description='The Loopix mix system.',
author='Ania Piotrowska (UCL Information Security)',
author_email='[email protected]',
url=r'https://pypi.python.org/pypi/loopix/',
packages=['loopix'],
license="2-clause BSD",
long_description="""The Loopix mix system for anonymous communications.""",
# setup_requires=["pytest >= 2.6.4"],
setup_requires=['pytest-runner', "pytest"],
tests_require=[
"pytest",
"future >= 0.14.3",
"pytest >= 3.0.0",
"msgpack-python >= 0.4.6",
"petlib >= 0.0.38",
],
install_requires=[
#"future >= 0.14.3",
"numpy >= 1.9.1",
"pytest >= 2.6.4",
"twisted >= 15.5.0",
"msgpack-python >= 0.4.6",
"petlib >= 0.0.34",
"sphinxmix>=0.0.6",
"fabric>=1.12.0",
"boto3>=1.4.0",
"matplotlib>=1.4.2",
"scipy>=0.16.1",
"scapy>=2.3.3",
"pybloom>=1.1"
],
zip_safe=False,
)