Skip to content

Commit d095e4a

Browse files
committed
Initial commit
0 parents  commit d095e4a

File tree

218 files changed

+15677
-0
lines changed

Some content is hidden

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

218 files changed

+15677
-0
lines changed

.flake8

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[flake8]
2+
max-line-length = 88
3+
ignore = E501, E203, W503
4+
per-file-ignores = __init__.py:F401
5+
exclude =
6+
.git
7+
__pycache__
8+
setup.py
9+
build
10+
dist
11+
releases
12+
.venv
13+
.tox
14+
.mypy_cache
15+
.pytest_cache
16+
.vscode
17+
.github
18+
poetry_core/utils/_compat.py
19+
tests/fixtures/
20+
tests/masonry/fixtures/

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
*.pyc
2+
3+
# Packages
4+
*.egg
5+
!/tests/**/*.egg
6+
/*.egg-info
7+
/tests/fixtures/**/*.egg-info
8+
/dist/*
9+
build
10+
_build
11+
.cache
12+
*.so
13+
14+
# Installer logs
15+
pip-log.txt
16+
17+
# Unit test / coverage reports
18+
.coverage
19+
.tox
20+
.pytest_cache
21+
22+
.DS_Store
23+
.idea/*
24+
.python-version
25+
.vscode/*
26+
27+
/test.py
28+
/test_*.*
29+
30+
/setup.cfg
31+
MANIFEST.in
32+
/setup.py
33+
/docs/site/*
34+
/tests/fixtures/simple_project/setup.py
35+
/tests/fixtures/project_with_extras/setup.py
36+
.mypy_cache
37+
38+
.venv
39+
/releases/*
40+
pip-wheel-metadata
41+
/poetry.toml

.pre-commit-config.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
repos:
2+
- repo: https://github.com/psf/black
3+
rev: stable
4+
hooks:
5+
- id: black
6+
7+
- repo: https://gitlab.com/pycqa/flake8
8+
rev: 3.7.8
9+
hooks:
10+
- id: flake8
11+
12+
- repo: https://github.com/pre-commit/mirrors-isort
13+
rev: v4.3.21
14+
hooks:
15+
- id: isort
16+
additional_dependencies: [toml]
17+
exclude: ^.*/?setup\.py$
18+
19+
- repo: https://github.com/pre-commit/pre-commit-hooks
20+
rev: v2.3.0
21+
hooks:
22+
- id: trailing-whitespace
23+
exclude: ^tests/.*/fixtures/.*
24+
- id: end-of-file-fixer
25+
exclude: ^tests/.*/fixtures/.*
26+
- id: debug-statements

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2020 Sébastien Eustace
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)