forked from google/python-fire
-
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.
Adds MANIFEST.in to Python Fire (properly including LICENSE file in s…
…dist). Copybara generated commit for Python Fire. PiperOrigin-RevId: 162957262 Change-Id: I3f8ef57524d05554a85d0e5fd8c83aa14e0c6200 Reviewed-on: https://team-review.git.corp.google.com/86022 Reviewed-by: David Bieber <[email protected]> Reviewed-by: Peter Grabowski <[email protected]>
- Loading branch information
Showing
3 changed files
with
8 additions
and
2 deletions.
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 @@ | ||
include LICENSE |
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,5 +1,11 @@ | ||
[metadata] | ||
license-file = LICENSE | ||
|
||
[wheel] | ||
universal = 1 | ||
|
||
[aliases] | ||
test=pytest | ||
test = pytest | ||
|
||
[tool:pytest] | ||
addopts = --ignore=fire/test_components_py3.py --ignore=fire/parser_fuzz_test.py |
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 |
---|---|---|
|
@@ -84,5 +84,4 @@ | |
|
||
install_requires=DEPENDENCIES, | ||
tests_require=TEST_DEPENDENCIES, | ||
data_files=[('', ['LICENSE'])], | ||
) |