diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 7 |
1 files changed, 7 insertions, 0 deletions
| @@ -21,6 +21,11 @@ setuptools.setup( | |||
| 21 | url='https://github.com/blackm0re/pyotp2289', | 21 | url='https://github.com/blackm0re/pyotp2289', |
| 22 | packages=setuptools.find_packages(), | 22 | packages=setuptools.find_packages(), |
| 23 | exclude_package_data={'': ['.gitignore']}, | 23 | exclude_package_data={'': ['.gitignore']}, |
| 24 | entry_points={ | ||
| 25 | 'console_scripts': [ | ||
| 26 | 'otp2289=otp2289.__main__:main', | ||
| 27 | ], | ||
| 28 | }, | ||
| 24 | classifiers=[ | 29 | classifiers=[ |
| 25 | 'Development Status :: 5 - Production/Stable', | 30 | 'Development Status :: 5 - Production/Stable', |
| 26 | 'Intended Audience :: Developers', | 31 | 'Intended Audience :: Developers', |
| @@ -37,6 +42,8 @@ setuptools.setup( | |||
| 37 | project_urls={ | 42 | project_urls={ |
| 38 | 'Bug Reports': 'https://github.com/blackm0re/pyotp2289/issues', | 43 | 'Bug Reports': 'https://github.com/blackm0re/pyotp2289/issues', |
| 39 | 'Source': 'https://github.com/blackm0re/pyotp2289', | 44 | 'Source': 'https://github.com/blackm0re/pyotp2289', |
| 45 | 'API Documentation': ( | ||
| 46 | 'http://gnulover.simeonov.no/docs/api/pyotp2289/latest/') | ||
| 40 | }, | 47 | }, |
| 41 | python_requires='>=3.6', | 48 | python_requires='>=3.6', |
| 42 | ) | 49 | ) |
