From 9c38528ec3db76454834ae84cfb8be557b800147 Mon Sep 17 00:00:00 2001 From: Reed O'Brien Date: Fri, 5 Nov 2010 09:50:55 -0400 Subject: rename readme to render on github --- README.rst | 30 ++++++++++++++++++++++++++++++ README.txt | 30 ------------------------------ 2 files changed, 30 insertions(+), 30 deletions(-) create mode 100644 README.rst delete mode 100644 README.txt diff --git a/README.rst b/README.rst new file mode 100644 index 000000000..26859f999 --- /dev/null +++ b/README.rst @@ -0,0 +1,30 @@ +Pyramid +======= + +``pyramid`` is a small, fast, down-to-earth, open source Python web +development framework. It makes real-world web application development +and deployment more fun, more predictable, and more productive. + +``pyramid`` is a `Pylons `_ project, and +underlies the newest web frameworks produced by the Pylons community. + +``pyramid`` was previously known as `repoze.bfg `_. + +Support and Documentation +------------------------- + +See the `Pylons Project website `_ to view +documentation, report bugs, and obtain support. + +License +------- + +``pyramid`` is offered under the BSD-derived `Repoze Public License +`_. + +Authors +------- + +``pyramid`` is made available by `Agendaless Consulting +`_ and a team of contributors. + diff --git a/README.txt b/README.txt deleted file mode 100644 index 26859f999..000000000 --- a/README.txt +++ /dev/null @@ -1,30 +0,0 @@ -Pyramid -======= - -``pyramid`` is a small, fast, down-to-earth, open source Python web -development framework. It makes real-world web application development -and deployment more fun, more predictable, and more productive. - -``pyramid`` is a `Pylons `_ project, and -underlies the newest web frameworks produced by the Pylons community. - -``pyramid`` was previously known as `repoze.bfg `_. - -Support and Documentation -------------------------- - -See the `Pylons Project website `_ to view -documentation, report bugs, and obtain support. - -License -------- - -``pyramid`` is offered under the BSD-derived `Repoze Public License -`_. - -Authors -------- - -``pyramid`` is made available by `Agendaless Consulting -`_ and a team of contributors. - -- cgit v1.2.3 From 90d6206928b6fcd0efdd289efa58ebaa53f7ae8b Mon Sep 17 00:00:00 2001 From: Reed O'Brien Date: Fri, 5 Nov 2010 10:45:02 -0400 Subject: update setup.py to get renamed readme --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f9dae7298..b220d2914 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) try: - README = open(os.path.join(here, 'README.txt')).read() + README = open(os.path.join(here, 'README.rst')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() except IOError: README = CHANGES = '' -- cgit v1.2.3