chore: delete old files

This commit is contained in:
Luke Tainton 2025-01-16 22:19:44 +00:00
parent eda179004a
commit d1a4bf5beb
Signed by: luke
SSH Key Fingerprint: SHA256:D34npKT7UaiT/7gULqu7EPSLWWVAjTjXf4kKfJ/fQBo
4 changed files with 0 additions and 96 deletions

View File

@ -1,3 +0,0 @@
"""MODULE: Specifies app version."""
VERSION = "1.3" # pragma: no cover

View File

@ -1,6 +0,0 @@
black
coverage
pylint
pylint-exit
pytest
requests-mock

View File

@ -1,25 +0,0 @@
astroid==3.1.0
attrs==23.2.0
certifi==2024.7.4
charset-normalizer==3.3.2
click==8.1.7
dill==0.3.8
exceptiongroup==1.2.1
idna==3.7
iniconfig==2.0.0
lazy-object-proxy==1.10.0
mccabe==0.7.0
mypy-extensions==1.0.0
packaging==24.0
pathspec==0.12.1
platformdirs==4.2.0
pluggy==1.5.0
py==1.11.0
pyparsing==3.1.2
requests==2.32.0
six==1.16.0
tabulate==0.9.0
tomli==2.0.1
tomlkit==0.12.4
urllib3==2.2.2
wrapt==1.16.0

View File

@ -1,62 +0,0 @@
#!/usr/bin/env python3
"""SETUP: Build application .whl file."""
from setuptools import setup
from ipilot._version import VERSION
dependencies: list = []
with open("requirements.txt", "r", encoding="ascii") as dep_file:
for dep_line in dep_file.readlines():
dependencies.append(dep_line.replace("\n", ""))
test_dependencies: list = []
with open("requirements-dev.txt", "r", encoding="ascii") as dep_file:
for dep_line in dep_file.readlines():
test_dependencies.append(dep_line.replace("\n", ""))
setup(
name="ipilot",
version=VERSION,
description="IP Information Lookup Tool",
long_description="IP Information Lookup Tool",
long_description_content_type="text/x-rst",
author="Luke Tainton",
author_email="luke@tainton.uk",
packages=["app"],
install_requires=dependencies,
tests_require=test_dependencies,
entry_points={
"console_scripts": [
"ipilot = ipilot.main:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Framework :: Pytest",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: Freeware",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: System :: Networking",
],
)