We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10adf37 commit cc20bdbCopy full SHA for cc20bdb
CHANGELOG.md
@@ -146,6 +146,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
146
147
### Fixed
148
- Package build (#238).
149
+- Do not install test files (#238).
150
151
## 0.9.0 - 2022-06-20
152
setup.py
@@ -67,10 +67,11 @@ def find_version(*file_paths):
67
return version_match.group(2)
68
raise RuntimeError("Unable to find version string.")
69
70
+packages = [item for item in find_packages('.') if item.startswith('tarantool')]
71
72
setup(
73
name="tarantool",
- packages=find_packages("."),
74
+ packages=packages,
75
package_dir={"tarantool": "tarantool"},
76
include_package_data=True,
77
version=find_version('tarantool', '__init__.py'),
0 commit comments