diff options
| author | Simeon Simeonov | 2022-03-31 07:21:33 +0200 |
|---|---|---|
| committer | Simeon Simeonov | 2022-03-31 07:21:33 +0200 |
| commit | 4ea3c077bd4111960af1b93195cb25bfb1d6edce (patch) | |
| tree | 9ed0b8fdb4398cf79a8ecc3ab39ade2d374eb65c /setup.py | |
| parent | f19fde48c6b3f65c164c931286e72a0d254c1fb3 (diff) | |
Restructure the project in order to replace distutils with setuptoolsv1.1.0
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/setup.py b/setup.py deleted file mode 100644 index 875d966..0000000 --- a/setup.py +++ /dev/null | |||
| @@ -1,50 +0,0 @@ | |||
| 1 | # -*- coding: utf-8 -*- | ||
| 2 | |||
| 3 | import setuptools | ||
| 4 | |||
| 5 | import otp2289 | ||
| 6 | |||
| 7 | |||
| 8 | with open('README.md', 'r') as fh: | ||
| 9 | long_description = fh.read() | ||
| 10 | |||
| 11 | |||
| 12 | setuptools.setup( | ||
| 13 | name='pyotp2289', | ||
| 14 | version=otp2289.__version__, | ||
| 15 | author=otp2289.__author__, | ||
| 16 | author_email='sgs@pichove.org', | ||
| 17 | description='A pure Python implementation of "A One-Time Password System"', | ||
| 18 | license=otp2289.__license__, | ||
| 19 | long_description=long_description, | ||
| 20 | long_description_content_type='text/markdown', | ||
| 21 | url='https://github.com/blackm0re/pyotp2289', | ||
| 22 | packages=setuptools.find_packages(), | ||
| 23 | exclude_package_data={'': ['.gitignore']}, | ||
| 24 | entry_points={ | ||
| 25 | 'console_scripts': [ | ||
| 26 | 'otp2289=otp2289.__main__:main', | ||
| 27 | ], | ||
| 28 | }, | ||
| 29 | classifiers=[ | ||
| 30 | 'Development Status :: 5 - Production/Stable', | ||
| 31 | 'Intended Audience :: Developers', | ||
| 32 | 'License :: OSI Approved :: BSD License', | ||
| 33 | 'Programming Language :: Python :: 3 :: Only', | ||
| 34 | 'Programming Language :: Python :: 3.6', | ||
| 35 | 'Programming Language :: Python :: 3.7', | ||
| 36 | 'Programming Language :: Python :: 3.8', | ||
| 37 | 'Programming Language :: Python :: 3.9', | ||
| 38 | 'Programming Language :: Python :: Implementation', | ||
| 39 | 'Operating System :: OS Independent', | ||
| 40 | 'Topic :: Security :: Cryptography' | ||
| 41 | ], | ||
| 42 | keywords='2289 freebsd unix security cryptography otp password', | ||
| 43 | project_urls={ | ||
| 44 | 'Bug Reports': 'https://github.com/blackm0re/pyotp2289/issues', | ||
| 45 | 'Source': 'https://github.com/blackm0re/pyotp2289', | ||
| 46 | 'API Documentation': ( | ||
| 47 | 'http://gnulover.simeonov.no/docs/api/pyotp2289/latest/') | ||
| 48 | }, | ||
| 49 | python_requires='>=3.6', | ||
| 50 | ) | ||
