From 0f8ba2b8b857efbb5b80c1bcb20c30b6625c20be Mon Sep 17 00:00:00 2001 From: "Paul A." Date: Mon, 13 May 2024 23:19:23 +0200 Subject: [PATCH] v0.10 version --- .travis.yml | 9 --------- dnsdumpster/.travis.yml | 9 --------- setup.py | 4 ++-- 3 files changed, 2 insertions(+), 20 deletions(-) delete mode 100644 .travis.yml delete mode 100644 dnsdumpster/.travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ec56b0a..0000000 --- a/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: python -python: - - "3.6" -# command to install dependencies -install: - - pip install . -# command to run tests -script: - - pytest # or py.test for Python versions 3.5 and below \ No newline at end of file diff --git a/dnsdumpster/.travis.yml b/dnsdumpster/.travis.yml deleted file mode 100644 index ec56b0a..0000000 --- a/dnsdumpster/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: python -python: - - "3.6" -# command to install dependencies -install: - - pip install . -# command to run tests -script: - - pytest # or py.test for Python versions 3.5 and below \ No newline at end of file diff --git a/setup.py b/setup.py index 0abdf94..0c51e9f 100644 --- a/setup.py +++ b/setup.py @@ -3,12 +3,12 @@ setup( name="dnsdumpster", packages=["dnsdumpster"], # this must be the same as the name above - version="0.9", + version="0.10", description="DNS Dumpster lib", author="Paul Sec", author_email="paulwebsec@gmail.com", url="https://github.com/PaulSec/API-dnsdumpster.com", - download_url="https://github.com/PaulSec/API-dnsdumpster.com/tarball/0.9", + download_url="https://github.com/PaulSec/API-dnsdumpster.com/tarball/0.10", keywords=["dnsdumpster", "dns", "harvesting"], install_requires=["bs4", "requests"], classifiers=[],