Skip to content

Commit 0d92819

Browse files
modzyopensourceClayton Davis
and
Clayton Davis
authored
Updated the Manifest file to prune samples and tests during packaging. Those files will remain in the repo, but do distribute to PyPi or Conda. (#39)
also updated version. Co-authored-by: Clayton Davis <[email protected]>
1 parent e86745a commit 0d92819

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ recursive-exclude * __pycache__
88
recursive-exclude * *.py[co]
99

1010
recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
11+
12+
prune samples
13+
prune tests

modzy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
from .client import ApiClient # noqa
77
from .edge.client import EdgeClient
8-
__version__ = '0.7.0'
8+
__version__ = '0.7.1'
99

1010
logging.getLogger(__name__).addHandler(logging.NullHandler())

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
requirements = ['requests', 'python-dotenv', 'deprecation', 'protobuf', 'grpcio', 'google-api-python-client']
1515

16-
test_requirements = ['pytest']
16+
# removed in 0.7.1 test_requirements = ['pytest']
1717

1818
setup(
1919
author='Modzy',
@@ -37,9 +37,9 @@
3737
keywords='modzy, sdk',
3838
name='modzy-sdk',
3939
packages=find_packages(),
40-
test_suite='tests',
41-
tests_require=test_requirements,
40+
# removed in 0.7.1 test_suite='tests',
41+
# removed in 0.7.1 tests_require=test_requirements,
4242
url='https://github.com/modzy/sdk-python',
43-
version='0.7.0',
43+
version='0.7.1',
4444
zip_safe=False,
4545
)

0 commit comments

Comments
 (0)