From 8dc2be303d1fcf3e1b5b6f4793c49fee7c33ba06 Mon Sep 17 00:00:00 2001 From: Travis Clarke Date: Sun, 10 Feb 2019 19:36:32 -0800 Subject: [PATCH] 1.1.3 - specify python_requires=">=3.6" --- Makefile | 2 +- README.md | 1 + docs/source/index.md | 3 +++ s3recon/__init__.py | 2 +- setup.py | 3 +++ tox.ini | 6 ++++++ 6 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 tox.ini diff --git a/Makefile b/Makefile index 21baa4c..01995ac 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ build: clean .PHONY: test test: - python -m nose2 --start-dir . --with-coverage --coverage-report "term" --coverage-report "html" + @echo "not implemented" .PHONY: clean clean: diff --git a/README.md b/README.md index 820befe..66bffcd 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # [s3recon](https://s3recon.readthedocs.io/en/latest/) [![PyPi release](https://img.shields.io/pypi/v/s3recon.svg)](https://pypi.org/project/s3recon/) +[![PyPi versions](https://img.shields.io/pypi/pyversions/s3recon.svg)](https://pypi.org/project/s3recon/) [![Downloads](https://pepy.tech/badge/s3recon)](https://pepy.tech/project/s3recon) [![Documentation Status](https://readthedocs.org/projects/s3recon/badge/?version=latest)](https://s3recon.readthedocs.io/en/latest/?badge=latest) diff --git a/docs/source/index.md b/docs/source/index.md index 614f6b1..8974fc4 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -13,6 +13,9 @@ Version |version| .. image:: https://img.shields.io/pypi/v/s3recon.svg :target: https://pypi.org/project/s3recon/ +.. image:: https://img.shields.io/pypi/pyversions/s3recon.svg + :target: https://pypi.org/project/s3recon/ + .. image:: https://pepy.tech/badge/s3recon :target: https://pepy.tech/project/s3recon diff --git a/s3recon/__init__.py b/s3recon/__init__.py index 72f26f5..0b2f79d 100644 --- a/s3recon/__init__.py +++ b/s3recon/__init__.py @@ -1 +1 @@ -__version__ = "1.1.2" +__version__ = "1.1.3" diff --git a/setup.py b/setup.py index f8474c4..6c1e487 100644 --- a/setup.py +++ b/setup.py @@ -26,11 +26,14 @@ def open_local(paths, mode="r", encoding="utf8"): long_description_content_type="text/markdown", url="https://github.com/clarketm/s3recon", packages=setuptools.find_packages(), + python_requires=">=3.6", include_package_data=True, install_requires=install_requires, entry_points={"console_scripts": ["s3recon=s3recon.s3recon:cli"]}, classifiers=( "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ), diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..c590236 --- /dev/null +++ b/tox.ini @@ -0,0 +1,6 @@ +[tox] +envlist = py36,py37 + +[testenv] +deps = pytest +commands = pytest