Skip to content

Commit

Permalink
Merge pull request #90 from traja-team/fix-subpackages
Browse files Browse the repository at this point in the history
Fix subpackages
  • Loading branch information
JustinShenk authored Jun 2, 2021
2 parents e133610 + 1cae873 commit 1f79143
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def find_version(*file_paths):
"Documentation": "https://traja.rtfd.io/en/latest/",
"Source Code": "https://github.com/traja-team/traja",
},
packages=find_packages(),
packages=find_packages(exclude=["*tests.*", "*tests"]),
include_package_data=True,
license="MIT",
keywords="trajectory analysis",
Expand Down
2 changes: 1 addition & 1 deletion traja/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .trajectory import *

__author__ = "justinshenk"
__version__ = "0.2.7"
__version__ = "0.2.8"

logging.basicConfig(level=logging.INFO)

Expand Down
Empty file.
Empty file.
Empty file.

0 comments on commit 1f79143

Please sign in to comment.