Skip to content

Commit

Permalink
Bump to v1.0.0rc1
Browse files Browse the repository at this point in the history
Prepare for PyPi.
  • Loading branch information
HacKanCuBa committed Feb 6, 2018
1 parent cec9bf3 commit 15d3a20
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 37 deletions.
2 changes: 1 addition & 1 deletion passphrase/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
Expand Down
75 changes: 39 additions & 36 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
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='[email protected]',
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
)

0 comments on commit 15d3a20

Please sign in to comment.