diff options
| author | Simeon Simeonov | 2021-06-13 08:51:34 +0200 |
|---|---|---|
| committer | Simeon Simeonov | 2021-06-13 08:51:34 +0200 |
| commit | 9179abf6c4b3e3eb2c991cbbd74738e160b910cc (patch) | |
| tree | 6f15f9f77821f8c961788f625ce344271adcd266 | |
| parent | 7498bf51d85f98d67d72193dc01db2afb83aeaf3 (diff) | |
Update setup.py with explicit Python 3.9 support and update contact info Freenode -> LiberaChat
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | otp2289/__main__.py | 2 | ||||
| -rw-r--r-- | setup.py | 1 |
3 files changed, 3 insertions, 2 deletions
| @@ -212,7 +212,7 @@ pyotp2289 is hosted on GitHub: https://github.com/blackm0re/pyotp2289 | |||
| 212 | 212 | ||
| 213 | ## Author | 213 | ## Author |
| 214 | 214 | ||
| 215 | Simeon Simeonov - sgs @ Freenode | 215 | Simeon 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( |
| @@ -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' |
