summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimeon Simeonov2022-04-02 19:52:04 +0200
committerSimeon Simeonov2022-04-02 19:52:04 +0200
commit2c33e6214d3d607541656d4a5174c3553bfb085e (patch)
treed994b1e515928d1f04caf7e2a2c57b361eefbcb5
parent4ea3c077bd4111960af1b93195cb25bfb1d6edce (diff)
Reintroduce setup.py for better compatibilityv1.1.1
-rw-r--r--CHANGELOG.md9
-rw-r--r--setup.py5
-rw-r--r--src/otp2289/__init__.py2
3 files changed, 15 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4288634..17b7d91 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,14 @@
1# Changelog 1# Changelog
2 2
3## [1.1.1](https://github.com/blackm0re/pyotp2289/tree/1.1.1) (2022-04-02)
4
5[Full Changelog](https://github.com/blackm0re/pyotp2289/compare/1.1.0...1.1.1)
6
7**Changes:**
8
9- Reintroduce setup.py for better campatibility
10
11
3## [1.1.0](https://github.com/blackm0re/pyotp2289/tree/1.1.0) (2022-03-29) 12## [1.1.0](https://github.com/blackm0re/pyotp2289/tree/1.1.0) (2022-03-29)
4 13
5[Full Changelog](https://github.com/blackm0re/pyotp2289/compare/1.0.0...1.1.0) 14[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 @@
1# Legacy setup for some build / install systems
2
3from setuptools import setup
4
5setup()
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 (
40) 40)
41 41
42__author__ = 'Simeon Simeonov' 42__author__ = 'Simeon Simeonov'
43__version__ = '1.1.0' 43__version__ = '1.1.1'
44__license__ = 'BSD 2-Clause' 44__license__ = 'BSD 2-Clause'
45 45
46 46