Skip to content

Commit

Permalink
Nest into Github.
Browse files Browse the repository at this point in the history
- Denominate files to indicate ReST.

- Drop .bzrignore.

- Add MANIFEST.in FBO users w/o setuptools_git.
  • Loading branch information
tseaver committed Jan 11, 2013
1 parent 1b980f3 commit 493f6bb
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .bzrignore

This file was deleted.

16 changes: 16 additions & 0 deletions .gitignore
@@ -0,0 +1,16 @@
bin
eggs
develop-eggs
parts
.installed.cfg
build
docs/_build
__pycache__
*.pyc
*.so
.tox
.coverage
nosetests.xml
coverage.xml
*.egg-info
*.egg
File renamed without changes.
10 changes: 10 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,10 @@
include *.rst
include *.txt

recursive-include doc *
recursive-include src *

global-exclude *.dll
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.so
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -101,8 +101,8 @@ def read_file(*path):
long_description = str(
("\n".join(doclines[2:]) + "\n\n" +
".. contents::\n\n" +
read_file("README.txt") + "\n\n" +
read_file("CHANGES.txt")
read_file("README.rst") + "\n\n" +
read_file("CHANGES.rst")
).decode('latin-1').replace(u'L\xf6wis', '|Lowis|')
)+ '''\n\n.. |Lowis| unicode:: L \\xf6 wis\n'''

Expand Down

0 comments on commit 493f6bb

Please sign in to comment.