-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (24 loc) · 933 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
from setuptools import setup
setup(name="netbeacon",
version="1.1",
description="Network host discovery.",
long_description = open("README.txt").read(),
keywords="network, host, beacon, discovery, UDP, broadcast",
author="David Siroky",
author_email="[email protected]",
url="http://www.smallbulb.net",
license="MIT License",
classifiers=[
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: System :: Networking",
"Topic :: System :: Distributed Computing",
"Topic :: Communications",
"Topic :: Software Development :: Libraries"
],
install_requires=["netifaces"],
py_modules=["beacon"],
scripts=["beacon_example_srv.py", "beacon_example_cli.py"]
)