Skip to content

Commit 1e726fd

Browse files
committed
initial commit
0 parents  commit 1e726fd

File tree

3 files changed

+101
-0
lines changed

3 files changed

+101
-0
lines changed

.gitignore

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
># Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
5+
# C extensions
6+
*.so
7+
8+
# Distribution / packaging
9+
.Python
10+
env/
11+
pyvenv/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
*.egg-info/
23+
.installed.cfg
24+
*.egg
25+
26+
# PyInstaller
27+
# Usually these files are written by a python script from a template
28+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
29+
*.manifest
30+
*.spec
31+
32+
# Installer logs
33+
pip-log.txt
34+
pip-delete-this-directory.txt
35+
36+
# Unit test / coverage reports
37+
htmlcov/
38+
.tox/
39+
.coverage
40+
.cache
41+
.pytest_cache
42+
nosetests.xml
43+
coverage.xml
44+
cover
45+
46+
# Translations
47+
*.mo
48+
*.pot
49+
50+
# Django stuff:
51+
*.log
52+
53+
# Sphinx documentation
54+
docs/_build/
55+
56+
# PyBuilder
57+
target/
58+
59+
# PyCharm
60+
.idea
61+
*.iml
62+
# rope
63+
*.swp
64+
.ropeproject
65+
tags
66+
node_modules/
67+
68+
# mypy
69+
.mypy_cache/

README.rst

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
l2x
2+
===
3+
4+
5+
6+
Requirements
7+
------------
8+
9+
* Python_ 3.6+
10+
11+
.. _Python: https://www.python.org

requirements-dev.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
bandit==1.5.0
2+
flake8==3.5.0
3+
flake8-bugbear==18.8.0
4+
flake8-builtins-unleashed==1.3.1
5+
flake8-class-newline==1.6.0
6+
flake8-comprehensions==1.4.1
7+
flake8-debugger==3.1.0
8+
flake8-mutable==1.2.0
9+
flake8-pyi==18.3.1
10+
flake8-quotes==1.0.0
11+
flake8-tuple==0.2.13
12+
ipdb==0.11
13+
mypy==0.620
14+
pandas==0.23.4
15+
pyroma==2.4
16+
pytest-cov==2.5.1
17+
pytest-sugar==0.9.1
18+
pytest==3.7.3
19+
scipy==1.1.0
20+
scikit-learn==0.19.2
21+
-e .

0 commit comments

Comments
 (0)