|
@@ -47,6 +47,9 @@ py_minor_version = py_version_info[1]
|
|
|
if (py_major_version == 2 and py_minor_version <=5) or py_major_version < 2:
|
|
|
install_requires.append("multiprocessing")
|
|
|
|
|
|
+long_description = codecs.open("README.rst", "r", "utf-8").read() + "\n" + \
|
|
|
+ codecs.open("Changelog", "r", "utf-8").read()
|
|
|
+
|
|
|
setup(
|
|
|
name='celery',
|
|
|
version=celery.__version__,
|
|
@@ -79,5 +82,5 @@ setup(
|
|
|
"Topic :: System :: Distributed Computing",
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
],
|
|
|
- long_description=codecs.open('README.rst', "r", "utf-8").read(),
|
|
|
+ long_description=long_description,
|
|
|
)
|