Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pygeoip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
pygeoip
Commits
8bd647ea
Commit
8bd647ea
authored
Jul 16, 2013
by
William Tisäter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Makefile to ease development
parent
6c6b7e1c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
DEVELOPER.md
+4
-0
Makefile
+23
-0
No files found.
DEVELOPER.md
View file @
8bd647ea
...
@@ -23,3 +23,7 @@ This requires a machine with Python 2.5 - 3.3 installed and all dependencies men
...
@@ -23,3 +23,7 @@ This requires a machine with Python 2.5 - 3.3 installed and all dependencies men
The documentation can be re-generated by running epydoc from repository root.
The documentation can be re-generated by running epydoc from repository root.
epydoc --config=epydoc.ini --no-private
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
)
.
Makefile
0 → 100644
View file @
8bd647ea
PANDOC
:=
$(
shell
which pandoc
)
VIRTUALENV
:=
$(
shell
which virtualenv
)
ifeq
($(PANDOC),)
$(warning
No
pandoc
binary
found)
endif
ifeq
($(VIRTUALENV),)
$(warning
No
virtualenv
binary
found)
endif
all
:
deps test doc
venv
:
@
virtualenv venv
@
venv/bin/pip install tox nose epydoc
test
:
venv
@
venv/bin/tox
doc
:
venv
@
venv/bin/epydoc
--config
=
epydoc.ini
--no-private
@
pandoc
--from
=
markdown
--to
=
rst
--output
=
README.rst README.md
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment