-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (25 loc) · 923 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
from setuptools import setup, find_packages
from findpi.__version__ import __version__
setup(
name="findpi",
author="James Campbell",
author_email="james@jamescampbell.us",
version=__version__,
license="MIT",
description="Find pi's on the network faster than nmap!",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=["findpi"],
py_modules=["findpi"],
keywords=["raspberry", "pi", "network-analysis", "sbc", "nmap"],
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
],
install_requires=["getmac", "psutil"],
entry_points={"console_scripts": ["findpi = findpi.findpi:main"]},
url="https://github.com/jamesacampbell/findpi",
download_url="https://github.com/jamesacampbell/findpi/archive/{}.tar.gz".format(
__version__
),
)