forked from DonnchaC/sphinx
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (31 loc) · 1.19 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
from setuptools import setup
import sphinxmix
if __name__ == "__main__":
setup(name='sphinxmix',
version=sphinxmix.VERSION,
description='A Python implementation of the Sphinx mix packet format.',
author='George Danezis',
author_email='[email protected]',
url=r'http://sphinxmix.readthedocs.io/en/latest/',
packages=['sphinxmix'],
license="2-clause BSD",
long_description="""A Python implementation of the Sphinx mix packet format.
For full documentation see: http://sphinxmix.readthedocs.io/en/latest/
""",
setup_requires=['pytest-runner', "pytest"],
tests_require=[
"pytest",
"future >= 0.14.3",
"pytest >= 3.0.0",
"msgpack-python >= 0.4.6",
"petlib >= 0.0.41",
"pynacl >= 1.1.0",
],
install_requires=[
"future >= 0.14.3",
"pytest >= 3.0.0",
"msgpack-python >= 0.4.6",
"petlib >= 0.0.41",
"pynacl >= 1.1.0",
]
)