summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimeon Simeonov2021-06-13 08:51:34 +0200
committerSimeon Simeonov2021-06-13 08:51:34 +0200
commit9179abf6c4b3e3eb2c991cbbd74738e160b910cc (patch)
tree6f15f9f77821f8c961788f625ce344271adcd266
parent7498bf51d85f98d67d72193dc01db2afb83aeaf3 (diff)
Update setup.py with explicit Python 3.9 support and update contact info Freenode -> LiberaChat
-rw-r--r--README.md2
-rw-r--r--otp2289/__main__.py2
-rw-r--r--setup.py1
3 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 4ceb456..7ba6487 100644
--- a/README.md
+++ b/README.md
@@ -212,7 +212,7 @@ pyotp2289 is hosted on GitHub: https://github.com/blackm0re/pyotp2289
212 212
213## Author 213## Author
214 214
215Simeon Simeonov - sgs @ Freenode 215Simeon Simeonov - sgs @ LiberaChat
216 216
217 217
218## [License](https://github.com/blackm0re/pyotp2289/blob/master/LICENSE) 218## [License](https://github.com/blackm0re/pyotp2289/blob/master/LICENSE)
diff --git a/otp2289/__main__.py b/otp2289/__main__.py
index 7c71040..7bb0673 100644
--- a/otp2289/__main__.py
+++ b/otp2289/__main__.py
@@ -165,7 +165,7 @@ def main(args=None):
165 parser = argparse.ArgumentParser( 165 parser = argparse.ArgumentParser(
166 prog=__package__, 166 prog=__package__,
167 epilog=(f'%(prog)s {otp2289.__version__} by Simeon Simeonov ' 167 epilog=(f'%(prog)s {otp2289.__version__} by Simeon Simeonov '
168 '(sgs @ Freenode)'), 168 '(sgs @ LiberaChat)'),
169 description='The following options are available') 169 description='The following options are available')
170 group = parser.add_mutually_exclusive_group(required=True) 170 group = parser.add_mutually_exclusive_group(required=True)
171 group.add_argument( 171 group.add_argument(
diff --git a/setup.py b/setup.py
index 7eac4d8..875d966 100644
--- a/setup.py
+++ b/setup.py
@@ -34,6 +34,7 @@ setuptools.setup(
34 'Programming Language :: Python :: 3.6', 34 'Programming Language :: Python :: 3.6',
35 'Programming Language :: Python :: 3.7', 35 'Programming Language :: Python :: 3.7',
36 'Programming Language :: Python :: 3.8', 36 'Programming Language :: Python :: 3.8',
37 'Programming Language :: Python :: 3.9',
37 'Programming Language :: Python :: Implementation', 38 'Programming Language :: Python :: Implementation',
38 'Operating System :: OS Independent', 39 'Operating System :: OS Independent',
39 'Topic :: Security :: Cryptography' 40 'Topic :: Security :: Cryptography'