-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change name to hc-passphrase just for PyPI
Fix Makefile: move mktemp sentence down into the install-common step to avoid the creation of a tempdir each time make is executed. Fix MANIFEST: the name was wrong! Add pip instructions in README, plus some bagdes. Add a Dockerfile example in DEVELOPERS. Bump version to rc2.
- Loading branch information
1 parent
f8dca25
commit 8bcef6e
Showing
8 changed files
with
72 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
include LICENSE | ||
include README.md | ||
include requirements.txt | ||
include DEVELOPERS.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
[nosetests] | ||
verbose=1 | ||
verbose = 1 | ||
|
||
[upload] | ||
sign = true | ||
identity = [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ def readme(): | |
|
||
|
||
setup( | ||
name='passphrase', | ||
name='hc-passphrase', | ||
version=passphrase_version, | ||
description='Generates cryptographically secure passphrases and ' | ||
'passwords', | ||
|
@@ -33,7 +33,7 @@ def readme(): | |
], | ||
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', | ||
download_url='https://github.com/HacKanCuBa/passphrase-py/archive/v{}.tar.gz'.format(passphrase_version), | ||
author='HacKan', | ||
author_email='[email protected]', | ||
license='GNU GPL 3.0+', | ||
|