Include the README.txt as long-description into the distribution
This commit is contained in:
parent
5d5989b67e
commit
691a27655c
@ -10,7 +10,7 @@ What is OpenSlides?
|
|||||||
OpenSlides is a free, web-based presentation system for displaying and
|
OpenSlides is a free, web-based presentation system for displaying and
|
||||||
controlling of agenda, applications and elections of an assembly.
|
controlling of agenda, applications and elections of an assembly.
|
||||||
|
|
||||||
See http://www.openslides.org for more information.
|
See http://openslides.org for more information.
|
||||||
|
|
||||||
|
|
||||||
Getting started
|
Getting started
|
||||||
@ -18,7 +18,7 @@ Getting started
|
|||||||
Install and start OpenSlides as described in the INSTALL.txt.
|
Install and start OpenSlides as described in the INSTALL.txt.
|
||||||
|
|
||||||
If you need help please contact the OpenSlides team on public mailing
|
If you need help please contact the OpenSlides team on public mailing
|
||||||
list or read the OpenSlides manual. See http://www.openslides.org.
|
list or read the OpenSlides manual. See http://openslides.org.
|
||||||
|
|
||||||
|
|
||||||
The start script of OpenSlides
|
The start script of OpenSlides
|
||||||
@ -26,6 +26,7 @@ The start script of OpenSlides
|
|||||||
Simply running
|
Simply running
|
||||||
openslides.exe (on Windows) or
|
openslides.exe (on Windows) or
|
||||||
python start.py (on Linux/MacOS)
|
python start.py (on Linux/MacOS)
|
||||||
|
|
||||||
will start OpenSlides using djangos development server. It will also
|
will start OpenSlides using djangos development server. It will also
|
||||||
try to open OpenSlides in your default webbrowser.
|
try to open OpenSlides in your default webbrowser.
|
||||||
|
|
||||||
|
4
setup.py
4
setup.py
@ -12,9 +12,13 @@ from setuptools import find_packages
|
|||||||
from openslides import get_version
|
from openslides import get_version
|
||||||
|
|
||||||
|
|
||||||
|
with open('README.txt') as file:
|
||||||
|
long_description = file.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='openslides',
|
name='openslides',
|
||||||
description='Presentation-System',
|
description='Presentation-System',
|
||||||
|
long_description=long_description,
|
||||||
version=get_version(),
|
version=get_version(),
|
||||||
url='http://openslides.org',
|
url='http://openslides.org',
|
||||||
author='OpenSlides-Team',
|
author='OpenSlides-Team',
|
||||||
|
Loading…
Reference in New Issue
Block a user