diff options
author | Kali Kaneko <kali@leap.se> | 2013-10-21 14:14:32 -0200 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2013-10-21 15:17:19 -0200 |
commit | 89eedff7af5424c69984a696ffb1cd2a8992f606 (patch) | |
tree | 4b53d65d5cc6a7dd88cc40439c884d1ea4a7ce25 /setup.py | |
parent | a06b5719f028e619a4b3800fb346ed3c984e4d25 (diff) |
add readme and changelog to long-description
reformat changelog in .rst
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', |