19 lines
386 B
Python
19 lines
386 B
Python
|
from setuptools import setup
|
||
|
|
||
|
from app._version import VERSION
|
||
|
|
||
|
setup(
|
||
|
name="ipilot",
|
||
|
version=VERSION,
|
||
|
description="IP Information Lookup Tool",
|
||
|
author="Luke Tainton",
|
||
|
author_email="luke@tainton.uk",
|
||
|
packages=["ipilot"],
|
||
|
install_requires=["requests"],
|
||
|
entry_points={
|
||
|
"console_scripts": [
|
||
|
"ipilot = app.main:main",
|
||
|
],
|
||
|
},
|
||
|
)
|