forked from rcloran/SleepProxyServer
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 693 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name="SleepProxyServer",
description="An implementation of a sleep proxy server, "
"which aims to be compatible with Apple's wake on demand",
version="0.1",
author="Russell Cloran",
author_email="rcloran@gmail.com",
url="https://github.com/rcloran/SleepProxyServer",
packages=["sleepproxy"],
scripts=["scripts/sleepproxyd"],
install_requires=[
# "dbus-python", # Unfortunately not distributed with a setup.py
"dnspython",
"gevent",
"netifaces",
"scapy",
"py2-ipaddress"
],
dependency_links=[
"http://www.secdev.org/projects/scapy/files/",
]
)