From 642345fb4ac159e7c179d959c46e513c6166198f Mon Sep 17 00:00:00 2001 From: Wolf Date: Wed, 26 Jun 2024 17:18:56 +0100 Subject: [PATCH] replit requirements (#16) split the requirement files. --- CITATION.cff | 4 ++-- requirements-dev.txt | 1 + requirements.txt | 1 - setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 requirements-dev.txt diff --git a/CITATION.cff b/CITATION.cff index 4ffcf7b..810f72a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,8 +3,8 @@ message: If you use this software, please cite it using these metadata. title: Time to First Byte abstract: Display the time-to-first-byte for any given url. type: software -version: 0.1.1 -date-released: 2024-05-23 +version: 0.1.2 +date-released: 2024-06-26 repository-code: https://github.com/PlatformEngineersToolbox/time-to-first-byte-python keywords: - "Wolf Software" diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..1d24baf --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1 @@ +setuptools==70.0.0 diff --git a/requirements.txt b/requirements.txt index 8623e67..e45d0e8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ colorama==0.4.6 -setuptools==70.0.0 wolfsoftware.drawlines==0.1.1 wolfsoftware.notify==0.1.0 wolfsoftware.prereqs==0.1.4 diff --git a/setup.py b/setup.py index 8bf3927..020d014 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='wolfsoftware.ttfb', - version='0.1.1', + version='0.1.2', author='Wolf Software', author_email='pypi@wolfsoftware.com', description='Display the time-to-first-byte for any given url.',