-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 815 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
#!/usr/bin/env python3
"""
setup.py file for aDTN-python
"""
from setuptools import setup, find_packages
setup(name='pyadtn',
version='0.1.0',
author="Ana Barroso",
author_email="[email protected]",
description="""Anonymous delay tolerant networking library""",
url="https://github.com/megfault/aDTN-python",
license="AGPL3",
packages=find_packages(exclude=['tests', 't', 'doc']),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Affero General Public License v3',
],
dependency_links=[
"git+https://github.com/synnefy/scapy.git@master#egg=scapy-python3"
],
install_requires=[
"scapy-python3",
"pynacl",
"tinydb",
"pyric"
]
)