Skip to content

Commit 3392f46

Browse files
setup: list package without path
Modern Python expects package name instead of full folder path [1]. 1. https://docs.python.org/3/distutils/setupscript.html#listing-whole-packages Part of #238
1 parent ad74ff9 commit 3392f46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def find_version(*file_paths):
7171
setup(
7272
name="tarantool",
7373
packages=["tarantool"],
74-
package_dir={"tarantool": os.path.join("tarantool")},
74+
package_dir={"tarantool": "tarantool"},
7575
include_package_data=True,
7676
version=find_version('tarantool', '__init__.py'),
7777
platforms=["all"],

0 commit comments

Comments
 (0)