Skip to content

Commit

Permalink
Exclude scripts and test_fixtures in the setup file (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
cemilcengiz authored Nov 1, 2021
1 parent bd53da2 commit c0d45da
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/pos_tagging/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
trapper==0.0.2
trapper==0.0.3
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ def get_requirements():
" transformer based models on downstream tasks.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
packages=find_packages(
exclude=[
"*.tests", "*.tests.*", "tests.*", "tests",
"test_fixtures", "test_fixtures.*",
"scripts", "scripts.*"
]),
classifiers=[
"Operating System :: OS Independent",
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion trapper/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
_MAJOR = "0"
_MINOR = "0"
_PATCH = "2"
_PATCH = "3"

VERSION = "{0}.{1}.{2}".format(_MAJOR, _MINOR, _PATCH)

0 comments on commit c0d45da

Please sign in to comment.