Skip to content

Commit

Permalink
Initial public commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ypid committed Oct 22, 2016
0 parents commit ccf49a2
Show file tree
Hide file tree
Showing 59 changed files with 11,783 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[report]
exclude_lines =
pragma: no cover
if LOG\.isEnabledFor\(logging\.DEBUG\):
65 changes: 65 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
dist_signed/
# *.check_idempotency

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.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
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

#Ipython Notebook
.ipynb_checkpoints
15 changes: 15 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[MESSAGES CONTROL]

#enable=

disable=logging-format-interpolation

# logging-format-interpolation: TODO: logging to new-style formating.

[FORMAT]

max-line-length=120

[BASIC]

good-names=i,j,k,ex,Run,_,kv,k,v
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---

language: python

python:
# Should match the versions listed in ./setup.py
- "3.3"
- "3.4"
- "3.5"

install:
- "pip install -e '.[test]'"
- "pip install -r docs/requirements.txt"

script:
- "make NOSETESTS=nosetests check"
16 changes: 16 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Changelog
=========

.. include:: includes/all.rst

This project adheres to `Semantic Versioning <http://semver.org/spec/v2.0.0.html>`__
and `human-readable changelog <http://keepachangelog.com/en/0.3.0/>`__.


yaml4rst v0.1.0 - unreleased
----------------------------

Added
~~~~~

- Initial coding and design. [ypid_]
3 changes: 3 additions & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Please read the `documentation <https://yaml4rst.readthedocs.io/en/latest/>`_
and especially the `Design prinipials <https://yaml4rst.readthedocs.io/en/latest/design.html>`_ first before opening a pull request.
Thanks!

0 comments on commit ccf49a2

Please sign in to comment.