diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-10-21 14:33:20 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-10-21 14:33:20 -0300 |
commit | c5da232623fb8322ab66f79fe823d16600be0090 (patch) | |
tree | 5d7516daab003cde6ae666dfbbddf370b8a889c0 /setup.py | |
parent | a06b5719f028e619a4b3800fb346ed3c984e4d25 (diff) | |
parent | 56402b3820361e7a606b38a5aa76a30282c63c18 (diff) |
Merge remote-tracking branch 'kali/improve-long-description' into develop
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 21 |
1 files changed, 2 insertions, 19 deletions
@@ -168,25 +168,8 @@ setup( cmdclass=cmdclass, description=("The Internet Encryption Toolkit: " "Encrypted Internet Proxy and Encrypted Mail."), - # XXX unify the long_description on a file of its own, so we - # can reuse it easily. - long_description=( - "Bitmask is the multiplatform desktop client for the LEAP Platform." - "\n" - "The LEAP Encryption Access Project develops " - "a multi-year plan to secure everyday communication.\n " - "The Encrypted Internet Proxy (EIP) provides circumvention, location " - "anonymization, and traffic encryption in a hassle-free, " - "automatically self-configuring fashion.\n" - "Encrypted Mail offers automatic encryption and decryption for " - "both outgoing and incoming email, adding public key cryptography " - "to your mail without you ever having to worry about key distribution " - "or signature verification. \n" - "The Encrypted Mail services will run local SMTP and IMAP proxies " - "that, once you configure the mail client of your choice, will " - "automatically encrypt and decrypt your email using GPG encryption " - "under the hood." - ), + long_description=open('README.rst').read() + '\n\n\n' + + open('CHANGELOG.rst').read(), classifiers=trove_classifiers, install_requires=parsed_reqs, test_suite='nose.collector', |