Skip to content

Commit 8d89081

Browse files
committed
initial commit
1 parent 0396ed9 commit 8d89081

10 files changed

+768
-1
lines changed

.coveragerc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[run]
2+
branch=False
3+
data_file = .coverage
4+
5+
[report]
6+
include=helpful.py
7+
show_missing = True
8+
#fail_under = 98
9+
10+
[html]
11+
directory = build/coverage

Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
clean:
2+
rm -rf *.egg *.egg-info .tox .benchmarks .cache pytestdebug.log \
3+
.coverage dist build .eggs
4+
find . -name "*.pyc" -exec rm -rf {} \;
5+
find . -name "__pycache__" -exec rm -rf {} \;
6+
7+
submit:
8+
python setup.py sdist upload

README.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
# python-helpful
1+
# python-helpful
2+
3+
[![Travis CI](https://travis-ci.org/imsofly/python-helpful.svg)](https://travis-ci.org/imsofly/python-helpful)
4+
[![Coverage Status](https://coveralls.io/repos/imsofly/python-helpful/badge.svg?branch=master&service=github)](https://coveralls.io/github/imsofly/python-helpful?branch=master)
5+
[![Python Versions](https://img.shields.io/pypi/pyversions/python-helpful.svg)](https://pypi.python.org/pypi/python-helpful)
6+
[![PyPI](https://img.shields.io/pypi/v/python-helpful.svg)](https://pypi.python.org/pypi/python-helpful)
7+
8+
9+
## WARNING: This library is still in development, not production ready
10+
11+
Collection of helpful tools
12+
13+
## Todo
14+
15+
```
16+
XXX: Add support for OrderedClassDict
17+
```

0 commit comments

Comments
 (0)