diff options
author | Calum Lind <calumlind@gmail.com> | 2018-10-16 14:15:07 +0200 |
---|---|---|
committer | Calum Lind <calumlind@gmail.com> | 2018-10-16 15:59:00 +0200 |
commit | 91164d8dbfa5e52903d3f271cac637f41611e79c (patch) | |
tree | 67ab434441d6ba58b516138c4c8d68c55aee5f64 /setup.py | |
parent | [WebUI] Enable debug URL parameter to parse false values (diff) | |
download | deluge-91164d8dbfa5e52903d3f271cac637f41611e79c.tar.xz deluge-91164d8dbfa5e52903d3f271cac637f41611e79c.zip |
Cleanup and use markdown for source text files
Use markdown to aid readability.
Update the README and use it for the long_description in setup.py
Add detailed requirement information to the DEPENDS files.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -571,10 +571,8 @@ setup( maintainer='Calum Lind', maintainer_email='calumlind+deluge@gmail.com', keywords='torrent bittorrent p2p fileshare filesharing', - long_description="""Deluge is a BitTorrent client that utilizes a - daemon/client model. There are various user interfaces available for - Deluge such as the GTK-UI, the Web-UI and a Console-UI. Deluge uses - libtorrent in it's backend to handle the BitTorrent protocol.""", + long_description=open('README.md').read(), + long_description_content_type='text/markdown', url='https://deluge-torrent.org', classifiers=[ 'Development Status :: 4 - Beta', |