Commit 7c39e476 authored by Łukasz Nowak's avatar Łukasz Nowak

Separate long_description creation.

parent 51dd2809
......@@ -2,13 +2,15 @@ from setuptools import setup, find_packages
version = '3.1-dev'
name = "slapos.rebootstrap"
long_description = open("README.txt").read() + '\n\n'
long_description += open("CHANGES.txt").read()
setup(
name=name,
version=version,
description="A zc.buildout extension to solve chicken-and-egg problem of"\
" using python which is built by itself",
long_description=open("README.txt").read() + "\n\n" +
open("CHANGES.txt").read(),
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Buildout :: Extension",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment