Skip to content

Commit

Permalink
remove integration_tests from package
Browse files Browse the repository at this point in the history
  • Loading branch information
msaltnet committed Apr 1, 2023
1 parent d56fa2a commit bf5b925
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
12 changes: 5 additions & 7 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
include LICENSE
include tests/*
include tests/data/*
include integration_tests/*
include integration_tests/data/*
include example_data/*
include notebook/*
include .pylintrc
include *.bat
include *.md
include requirements.txt
include requirements-dev.txt
prune *.log
recursive-include tests *.py
recursive-include integration_tests *.py *.json *.jpg *.txt
recursive-include example_data *
recursive-include notebook *
exclude *.log *.db *.env
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
URL = "https://github.com/msaltnet/smtm"
EMAIL = "salt.jeong@gmail.com"
AUTHOR = "msalt"
VERSION = "1.1.0"
VERSION = "1.1.1"

# What packages are required for this module to be executed?
REQUIRED = [
Expand Down Expand Up @@ -46,7 +46,7 @@ def smtm_test_suite():
author=AUTHOR,
author_email=EMAIL,
license="MIT",
packages=find_packages(),
packages=["smtm"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
Expand Down
2 changes: 1 addition & 1 deletion smtm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@
"DataRepository",
"Database",
]
__version__ = "1.1.0"
__version__ = "1.1.1"

0 comments on commit bf5b925

Please sign in to comment.