-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Greatly reduced package size by removing the following directories from pypi release: examples, example_data, tests
- Loading branch information
Showing
4 changed files
with
11 additions
and
4 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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
recursive-include tcxreader * | ||
recursive-include example_data * | ||
recursive-include examples * | ||
recursive-exclude example_data * | ||
recursive-exclude examples * | ||
recursive-exclude tests * | ||
recursive-exclude tcxreader.tests * | ||
prune */tests | ||
include LICENSE |
Empty file.
Empty file.
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 |
---|---|---|
|
@@ -6,14 +6,18 @@ | |
|
||
setuptools.setup( | ||
name="tcxreader", | ||
version="0.4.3", | ||
version="0.4.4", | ||
author="Alen Rajšp", | ||
author_email="[email protected]", | ||
description="tcxreader is a reader for Garmin’s TCX file format. It also works well with missing data!", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/alenrajsp/tcxreader", | ||
packages=setuptools.find_packages(exclude=['*tests*']), | ||
packages=setuptools.find_packages(exclude=("*.tests", "*.tests.*", "tests.*", "tests", '*tests*', | ||
"*tcxreader.tests", "*.tcxreader.tests.*", "tcxreader.tests.*", | ||
"tcxreader.tests", '*tcxreader.tests*', | ||
"*.examples","*.examples.*", "examples.*", "examples", | ||
"*.example_data", "*.example_data.*", "example_data.*", "example_data")), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.6", | ||
"License :: OSI Approved :: MIT License", | ||
|