pypilot/setup.py

23 lines
450 B
Python
Raw Normal View History

2022-06-25 21:56:08 +01:00
#!/usr/bin/env python3
"""SETUP: Build application .whl file."""
2022-06-25 21:45:16 +01:00
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",
2022-06-25 22:00:05 +01:00
packages=["app"],
2022-06-25 21:45:16 +01:00
install_requires=["requests"],
entry_points={
"console_scripts": [
"ipilot = app.main:main",
],
},
)