Skip to content

Commit 9169d71

Browse files
autofind packages
1 parent b3ca988 commit 9169d71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import re
66

77
try:
8-
from setuptools import setup
8+
from setuptools import setup, find_packages
99
except ImportError:
10-
from distutils.core import setup
10+
from distutils.core import setup, find_packages
1111

1212
# Extra commands for documentation management
1313
cmdclass = {}
@@ -70,7 +70,7 @@ def find_version(*file_paths):
7070

7171
setup(
7272
name="tarantool",
73-
packages=["tarantool"],
73+
packages=find_packages("."),
7474
package_dir={"tarantool": "tarantool"},
7575
include_package_data=True,
7676
version=find_version('tarantool', '__init__.py'),

0 commit comments

Comments
 (0)