forked from aws/aws-sdk-pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
5facae2
commit 9547f9c
Showing
9 changed files
with
44 additions
and
30 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
include README.md LICENSE requirements.txt NOTICE THIRD_PARTY | ||
include README.md | ||
include LICENSE.txt | ||
include NOTICE.txt | ||
include THIRD_PARTY.txt | ||
include requirements.txt | ||
include awswrangler/py.typed | ||
exclude .* | ||
exclude *.egg-info | ||
exclude data_samples* | ||
exclude dist* | ||
exclude docs* | ||
exclude dev* | ||
exclude htmlcov* | ||
exclude testing* | ||
exclude building* | ||
exclude tutorials* | ||
|
||
global-exclude *.so | ||
global-exclude *.pyc | ||
global-exclude *~ | ||
global-exclude \#* | ||
global-exclude .git* | ||
global-exclude .coverage* | ||
global-exclude .DS_Store | ||
global-exclude __pycache__ |
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,23 @@ | ||
[metadata] | ||
license_file = LICENSE | ||
license_files = | ||
LICENSE.txt | ||
NOTICE.txt | ||
THIRD_PARTY.txt | ||
|
||
[flake8] | ||
max-line-length = 120 | ||
|
||
[tool:pytest] | ||
addopts = | ||
--verbose | ||
--capture=fd | ||
filterwarnings = | ||
ignore::DeprecationWarning | ||
ignore::UserWarning | ||
|
||
[isort] | ||
multi_line_output=3 | ||
include_trailing_comma=True | ||
force_grid_wrap=0 | ||
use_parentheses=True | ||
line_length=120 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters