-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(setup): Added additional metainfo
1. Added metainfo like license and platform to setup.py. 2. Added MANIFEST.in to remove test data from package. 3. New exception NotSupportedExtension to handle files with unknown extensions. 4. Remove `cwd` infront of filename. Signed-off-by: Gaurav Mishra <mishra.gaurav@siemens.com>
- Loading branch information
Showing
4 changed files
with
71 additions
and
53 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,14 @@ | ||
# Manifest syntax https://docs.python.org/3/distutils/sourcedist.html | ||
recursive-exclude __pycache__ *.pyc *.pyo *.orig | ||
|
||
exclude *.git* | ||
exclude *.sh | ||
exclude extractor/languages/tests* | ||
|
||
include LICENSE | ||
|
||
prune .git | ||
prune venv | ||
prune .venv | ||
prune extractor/languages/tests | ||
|
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
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
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