diff --git a/passphrase/__main__.py b/passphrase/__main__.py index bb89f8c..cc5c560 100644 --- a/passphrase/__main__.py +++ b/passphrase/__main__.py @@ -34,7 +34,7 @@ __author__ = 'HacKan' __license__ = 'GNU GPL 3.0+' -__version__ = '1.0.0rc0' +__version__ = '1.0.0rc1' __version_string__ = ( 'Passphrase v{}\nby HacKan (https://hackan.net) FOSS ' 'under GNU GPL v3.0 or newer'.format(__version__) diff --git a/setup.py b/setup.py index cb7d6a7..0f7c11a 100755 --- a/setup.py +++ b/setup.py @@ -8,39 +8,42 @@ def readme(): return rst.read() -setup(name='passphrase', - version=passphrase_version, - description='Generates cryptographically secure passphrases and ' - 'passwords', - long_description=readme(), - classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Environment :: Console', - 'Intended Audience :: Developers', - 'Intended Audience :: End Users/Desktop', - 'License :: OSI Approved :: GNU General Public License v3 or later ' - '(GPLv3+)', - 'Natural Language :: English', - 'Operating System :: POSIX :: Linux', - 'Programming Language :: Python :: 3.2', - 'Topic :: Security :: Cryptography', - 'Topic :: Utilities' - ], - platforms=[ - 'POSIX :: Linux' - ], - keywords='cryptography passphrase password security', - url='http://github.com/hackancuba/passphrase-py', - author='HacKan', - author_email='hackan@gmail.com', - license='GNU GPL 3.0+', - packages=['passphrase'], - python_requires='~=3.2', - install_requires=[ - ], - test_suite='nose.collector', - tests_require=['nose'], - entry_points={ - 'console_scripts': ['passphrase=passphrase.__main__:main'], - }, - zip_safe=False) +setup( + name='passphrase', + version=passphrase_version, + description='Generates cryptographically secure passphrases and ' + 'passwords', + long_description=readme(), + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'Intended Audience :: End Users/Desktop', + 'License :: OSI Approved :: GNU General Public License v3 or later ' + '(GPLv3+)', + 'Natural Language :: English', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python :: 3.2', + 'Topic :: Security :: Cryptography', + 'Topic :: Utilities' + ], + platforms=[ + 'POSIX :: Linux' + ], + keywords='cryptography passphrase password security', + url='http://github.com/hackancuba/passphrase-py', + download_url='https://github.com/HacKanCuBa/passphrase-py/archive/v1.0.0rc1.tar.gz', + author='HacKan', + author_email='hackan@gmail.com', + license='GNU GPL 3.0+', + packages=['passphrase'], + python_requires='~=3.2', + install_requires=[ + ], + test_suite='nose.collector', + tests_require=['nose'], + entry_points={ + 'console_scripts': ['passphrase=passphrase.__main__:main'], + }, + zip_safe=False +)