Skip to content

Commit 4e83fcc

Browse files
committed
Initial commit
0 parents  commit 4e83fcc

39 files changed

Lines changed: 2475 additions & 0 deletions

.coveragerc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[run]
2+
source = asciistuff
3+
omit =
4+
asciistuff/__info__.py
5+
tests/*
6+
7+
[report]
8+
exclude_lines =
9+
pragma: no cover
10+
if.*?__name__.*?==.*?.__main__.:
11+
def main\(\)\:
12+
except ImportError:
13+
except NameError:
14+
raise NotImplementedError
15+
if not PY3
16+
if PY3
17+
def encode\(self, input, final\=False\)\:
18+
def decode\(self, input, final\=False\)\:

.gitignore

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Temp files
2+
*~
3+
*.backup
4+
.DS_Store
5+
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
10+
# C extensions
11+
*.so
12+
13+
# Distribution / packaging
14+
.Python
15+
env/
16+
build/
17+
.build/
18+
develop-eggs/
19+
dist/
20+
downloads/
21+
eggs/
22+
.eggs/
23+
lib64/
24+
parts/
25+
sdist/
26+
reinstall.sh
27+
test.sh
28+
update.sh
29+
version.py
30+
31+
var/
32+
*.egg-info/
33+
.installed.cfg
34+
*.egg
35+
36+
# PyInstaller
37+
# Usually these files are written by a python script from a template
38+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
39+
*.manifest
40+
*.spec
41+
MANIFEST
42+
43+
# Installer logs
44+
pip-log.txt
45+
pip-delete-this-directory.txt
46+
47+
# Unit test / coverage reports
48+
htmlcov/
49+
coverage/
50+
.tox/
51+
.coverage
52+
.coverage.*
53+
.coveralls.*
54+
.cache
55+
nosetests.xml
56+
coverage.xml
57+
*,cover
58+
59+
# Translations
60+
*.mo
61+
*.pot
62+
63+
# Sphinx documentation
64+
docs/_build/
65+
66+
# PyBuilder
67+
target/
68+
69+
# Project artifacts
70+
.idea
71+
.vagrant
72+
.test
73+
.pytest_cache
74+
tmp
75+
TODO
76+
script.py
77+
tool.py

.readthedocs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
mkdocs:
3+
configuration: mkdocs.yml
4+
formats: all
5+
python:
6+
version: 3.6

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: python
2+
sudo: required
3+
python:
4+
- "2.7"
5+
- "3.5"
6+
- "3.6"
7+
- "3.7"
8+
- "3.8"
9+
cache: pip
10+
install:
11+
- pip install coveralls
12+
- pip install -r requirements.txt
13+
- python setup.py install
14+
script:
15+
- nosetests -v --with-coverage --cover-tests --cover-package codext tests
16+
after_success:
17+
- coveralls

0 commit comments

Comments
 (0)