From 2c33e6214d3d607541656d4a5174c3553bfb085e Mon Sep 17 00:00:00 2001 From: Simeon Simeonov Date: Sat, 2 Apr 2022 19:52:04 +0200 Subject: Reintroduce setup.py for better compatibility --- CHANGELOG.md | 9 +++++++++ setup.py | 5 +++++ src/otp2289/__init__.py | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 setup.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 4288634..17b7d91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.1.1](https://github.com/blackm0re/pyotp2289/tree/1.1.1) (2022-04-02) + +[Full Changelog](https://github.com/blackm0re/pyotp2289/compare/1.1.0...1.1.1) + +**Changes:** + +- Reintroduce setup.py for better campatibility + + ## [1.1.0](https://github.com/blackm0re/pyotp2289/tree/1.1.0) (2022-03-29) [Full Changelog](https://github.com/blackm0re/pyotp2289/compare/1.0.0...1.1.0) diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a5d21d8 --- /dev/null +++ b/setup.py @@ -0,0 +1,5 @@ +# Legacy setup for some build / install systems + +from setuptools import setup + +setup() diff --git a/src/otp2289/__init__.py b/src/otp2289/__init__.py index 59694a7..af8638c 100644 --- a/src/otp2289/__init__.py +++ b/src/otp2289/__init__.py @@ -40,7 +40,7 @@ from .server import ( ) __author__ = 'Simeon Simeonov' -__version__ = '1.1.0' +__version__ = '1.1.1' __license__ = 'BSD 2-Clause' -- cgit v1.3