RELEASE: Version 1.0 (#3)

This commit was merged in pull request #3.
This commit is contained in:
2022-06-25 22:27:01 +01:00
committed by GitHub
parent 374d77a2d1
commit e374dc195b
15 changed files with 354 additions and 3 deletions

29
setup.py Normal file
View File

@@ -0,0 +1,29 @@
#!/usr/bin/env python3
"""SETUP: Build application .whl file."""
from setuptools import setup
from app._version import VERSION
dependencies = []
with open("requirements.txt", "r", encoding="ascii") as dep_file:
for dep_line in dep_file.readlines():
dependencies.append(dep_line.replace("\n", ""))
setup(
name="ipilot",
version=VERSION,
description="IP Information Lookup Tool",
author="Luke Tainton",
author_email="luke@tainton.uk",
packages=["app"],
install_requires=dependencies,
entry_points={
"console_scripts": [
"ipilot = app.main:main",
],
},
)