Skip to content
This repository has been archived by the owner on Apr 10, 2018. It is now read-only.

Commit

Permalink
Merge 1e08687 into b8c6732
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwilliam committed Feb 2, 2014
2 parents b8c6732 + 1e08687 commit 397f36b
Show file tree
Hide file tree
Showing 39 changed files with 494 additions and 7,232 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pygeoip-*
cover
.coverage
.coveralls.yml
apidocs/html/.*
docs/_build/*
6 changes: 1 addition & 5 deletions DEVELOPER.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Bootstrap manual for developers
_Dependencies: tox, nose, epydoc_
_Dependencies: tox, nose_

### Testing

Expand All @@ -20,10 +20,6 @@ This requires a machine with Python 2.5 - 3.3 installed and all dependencies men

### Documentation

The documentation can be re-generated by running epydoc from repository root.

epydoc --config=epydoc.ini --no-private

For converting Markdown to reStructuredText used by PyPi we use pandoc.
[Read pandoc's install instructions](http://johnmacfarlane.net/pandoc/installing.html).

Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ include README.rst
include LICENSE.md
include DEVELOPER.md
include CHANGELOG.md
include epydoc.ini
include tox.ini
24 changes: 24 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.PHONY: docs

all: test docs

test:
@echo "Downloading test databases"
rm -rf maxmind-geoip-samples.tar.gz tests/data; mkdir -p tests/data
curl -s https://www.defunct.cc/maxmind-geoip-samples.tar.gz | tar -zx -C tests

@echo "Testing local state"
@tox --version > /dev/null || (echo "Requires tox - install requirements.txt"; exit 1)
tox

docs:
@echo "Building documentation"
make -C docs clean
make -C docs html

clean:
@echo "Cleaning doc, test and cache files"
git clean -fd
find . -name *.pyc -delete
rm -rf pygeoip-* pygeoip.egg-info

122 changes: 0 additions & 122 deletions README.md

This file was deleted.

90 changes: 0 additions & 90 deletions apidocs/html/api-objects.txt

This file was deleted.

0 comments on commit 397f36b

Please sign in to comment.