Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Dec 21, 2015
0 parents commit d4ca760
Show file tree
Hide file tree
Showing 23 changed files with 1,200 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[run]
omit =
/*/test*
/tests
/*/__init__.py
/setup.py
64 changes: 64 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# editors
*.komodoproject

# other
*.DS_Store*
*~
local_settings.py
*.db
*.tar.gz
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: python
sudo: false
cache: pip

python:
- "3.4"
- "2.7"

branches:
only:
- master

# command to install requirements
install:
- python setup.py -q develop
- pip install -r requirements-test.txt

# command to run tests, e.g. python setup.py test
script:
- coverage run --source=owm_legacy runtests.py

after_success:
coveralls
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Changelog
=========

Version 0.1 [unreleased]
------------------------

WIP
5 changes: 5 additions & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Contributing
============

Thanks for your interest! We love contributions, so please feel free to fix bugs, improve things, provide documentation.
Just `follow the guidelines <https://github.com/openwisp/django-owm-legacy>`_ and submit a PR.

0 comments on commit d4ca760

Please sign in to comment.