Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbedrich committed Jul 19, 2018
0 parents commit 6973090
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
__pycache__/
*.egg-info/
.eggs/
.cache/
.venv/
.tox/
.pytest_cache/
dist/
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# v0.0.1

Initial release.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.PHONY: test clean


test: .venv
.venv/bin/tox


clean:
rm -rf .venv/ .eggs/ .tox/ .pytest_cache/ *.egg-info/ dist/


.venv:
"$(shell which python3)" -m venv .venv
.venv/bin/pip install --upgrade pip setuptools tox # because of Jenkins
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
llconfig
========

Lightweight layered configuration library.

---

TODO - in meantime, see inline docstrings in `llconfig/*.py`.
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from setuptools import setup

setup(
name='llconfig',
version='0.0.1',
packages=['llconfig'],
license='MIT',
author='Heureka.cz',
author_email='[email protected]',
description='Lightweight layered configuration library.',
)
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[tox]
envlist = py35,py36

[testenv]
deps = pytest
commands = pytest -v

0 comments on commit 6973090

Please sign in to comment.