Skip to content

Commit 385210e

Browse files
authored
initial version (#2)
1 parent 5ced3bd commit 385210e

1,491 files changed

Lines changed: 76885 additions & 35 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1-
venv3
1+
venv3/
2+
venv/
3+
venv-cpp/
4+
venv-py/
25
.mypy_cache/
3-
.idea
6+
.idea/
47
*.pyc
5-
.precommit_hashes
8+
.precommit_hashes/
69
*.egg-info
7-
*.generated_from_test.hpp
8-
sandbox-cpp-build
9-
sandbox/cpp/cmake-build-debug
10+
*.generated_from_test.h
11+
*.generated_from_test.cpp
12+
sandbox-cpp-build/
13+
sandbox/cpp/cmake-build-debug/
14+
.tox/
15+
dist/
16+
.coverage

.isort.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[settings]
2+
line_length=120
3+
not_skip=__init__.py

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: python
2+
python:
3+
- "3.5"
4+
- "3.6"
5+
install:
6+
- pip3 install -e .[dev]
7+
- pip3 install coveralls
8+
script:
9+
- python3 precommit.py
10+
- coveralls

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include requirements.txt

README.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)