Fixed #29373 -- Added long_description in setup.py.
This commit is contained in:
parent
21fd8041c1
commit
2e1f674897
6
setup.py
6
setup.py
|
@ -61,6 +61,11 @@ EXCLUDE_FROM_PACKAGES = ['django.conf.project_template',
|
||||||
version = __import__('django').get_version()
|
version = __import__('django').get_version()
|
||||||
|
|
||||||
|
|
||||||
|
def read(fname):
|
||||||
|
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
|
||||||
|
return f.read()
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='Django',
|
name='Django',
|
||||||
version=version,
|
version=version,
|
||||||
|
@ -70,6 +75,7 @@ setup(
|
||||||
author_email='foundation@djangoproject.com',
|
author_email='foundation@djangoproject.com',
|
||||||
description=('A high-level Python Web framework that encourages '
|
description=('A high-level Python Web framework that encourages '
|
||||||
'rapid development and clean, pragmatic design.'),
|
'rapid development and clean, pragmatic design.'),
|
||||||
|
long_description=read('README.rst'),
|
||||||
license='BSD',
|
license='BSD',
|
||||||
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
|
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
|
Loading…
Reference in New Issue