Find packages in setup.py.
Thanks Jordi!
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from os.path import join, dirname
|
from os.path import join, dirname
|
||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
@@ -42,7 +42,10 @@ setup(
|
|||||||
version = __versionstr__,
|
version = __versionstr__,
|
||||||
author = "Honza Král",
|
author = "Honza Král",
|
||||||
author_email = "[email protected]",
|
author_email = "[email protected]",
|
||||||
packages = ['elasticsearch'],
|
packages=find_packages(
|
||||||
|
where='.',
|
||||||
|
exclude=('test_elasticsearch', )
|
||||||
|
),
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
"License :: OSI Approved :: Apache Software License",
|
"License :: OSI Approved :: Apache Software License",
|
||||||
|
|||||||
Reference in New Issue
Block a user