diff options
-rw-r--r-- | MANIFEST.in | 1 | ||||
-rw-r--r-- | NEWS.txt | 22 | ||||
-rw-r--r-- | setup.py | 7 |
3 files changed, 1 insertions, 29 deletions
diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 7e89e1e..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1 +0,0 @@ -include NEWS.txt
\ No newline at end of file diff --git a/NEWS.txt b/NEWS.txt deleted file mode 100644 index 6279392..0000000 --- a/NEWS.txt +++ /dev/null @@ -1,22 +0,0 @@ -0.1 2012-03-08 - * Initial version: tests succeed - -0.2 2012-03-08 - * Just a packaging issue, don’t play with strings too much in setup.py - version=yamlish.__version__ and that’s it. No fancy formatting. - -0.3 2012-03-08 - * Excuse me, son, but your tempfiles are leaking !!! - * Also fixing python setup.py test so that it actually does something. - -0.4 2012-03-09 - * Missing requires field in setup.py - -0.5 2012-03-14 - * Make the module documentation string at least a bit presentable. - -0.6 2012-03-16 - * package doesn’t install without NEWS.txt which was missing. - -0.7 2012-03-29 - * multiline strings are always compact (with "|" style).
\ No newline at end of file @@ -27,11 +27,6 @@ def read(fname): with open(os.path.join(os.path.dirname(__file__), fname)) as inf: return "\n" + inf.read().replace("\r\n", "\n") -def get_long_description(): - return read("README.txt") \ - + "\nChangelog:\n" + "=" * 10 + "\n" \ - + read("NEWS.txt") - setup( name='yamlish', version=str(yamlish.__version__), @@ -40,7 +35,7 @@ setup( author_email='mcepl@redhat.com', url='https://gitorious.org/yamlish', py_modules=['yamlish'], - long_description=get_long_description(), + long_description=read("README.txt"), keywords=['TAP', 'YAML', 'yamlish'], cmdclass={'test': RunTests}, classifiers=[ |