-
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.
Added pyproject.toml and MANIFEST.in , needed to properly declare tha…
…t requirements.txt must be included, so generated wheels include the right dependencies
- Loading branch information
1 parent
0b3321d
commit 8ae1380
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include LICENSE | ||
include README.md | ||
include requirements.txt |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[mypy] | ||
warn_redundant_casts=true | ||
warn_unused_ignores=true | ||
|
||
[tool.yapf] | ||
based_on_style="pep8" | ||
continuation_align_style="valign-right" | ||
dedent_closing_brackets=true | ||
force_multiline_dict=true | ||
spaces_around_dict_delimiters=true | ||
spaces_around_list_delimiters=true | ||
split_all_comma_separated_values=true | ||
use_tabs=true |
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