File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -147,6 +147,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
147
147
# ## Fixed
148
148
- Package build (# 238).
149
149
- Allow any MessagePack supported type as a request key (# 240).
150
+ - Puting test files in pip package (# 238).
150
151
151
152
# # 0.9.0 - 2022-06-20
152
153
Original file line number Diff line number Diff line change @@ -67,10 +67,11 @@ def find_version(*file_paths):
67
67
return version_match .group (2 )
68
68
raise RuntimeError ("Unable to find version string." )
69
69
70
+ packages = [item for item in find_packages ('.' ) if item .startswith ('tarantool' )]
70
71
71
72
setup (
72
73
name = "tarantool" ,
73
- packages = find_packages ( "." ) ,
74
+ packages = packages ,
74
75
package_dir = {"tarantool" : "tarantool" },
75
76
include_package_data = True ,
76
77
version = find_version ('tarantool' , '__init__.py' ),
You can’t perform that action at this time.
0 commit comments