Skip to content

Commit e74117f

Browse files
committed
Initial commit
0 parents  commit e74117f

Some content is hidden

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

48 files changed

+6595
-0
lines changed

.flake8

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This is an example .flake8 config, used when developing *Black* itself.
2+
# Keep in sync with setup.cfg which is used for source packages.
3+
4+
[flake8]
5+
ignore = E266, E501
6+
max-line-length = 80
7+
max-complexity = 12
8+
select = B,C,E,F,W,T4,B9

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.coverage

.travis.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
sudo: false
2+
language: python
3+
before_script:
4+
- pip install -e .
5+
# test script
6+
script: python setup.py test
7+
notifications:
8+
on_success: change
9+
on_failure: always
10+
matrix:
11+
include:
12+
- python: 3.6
13+
- python: 3.6-dev
14+
- python: 3.7-dev
15+
- python: 3.8-dev

LICENSE

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

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include *.rst *.md LICENSE
2+
recursive-include tests *.txt *.py

Pipfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[[source]]
2+
url = "https://pypi.python.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
attrs = "*"
8+
click = "*"
9+
10+
[dev-packages]
11+
coverage = "*"
12+
flake8 = "*"
13+
flake8-bugbear = "*"
14+
flake8-mypy = "*"
15+
mypy = "*"
16+
pypandoc = "*"
17+
twine = "*"

Pipfile.lock

+243
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)