Use find_packages in setup.py to embed client

This commit is contained in:
Bastien Abadie 2018-05-29 11:26:18 +02:00
Родитель 5314aceb3b
Коммит 7145e5876a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,6 @@
import os
from setuptools import setup
from setuptools import setup, find_packages
root = os.path.abspath(os.path.dirname(__file__))
@ -17,7 +17,7 @@ setup(
author_email='kyle@lahnakoski.com',
url='https://github.com/klahnakoski/esFrontLine',
license='MPL 2.0',
packages=['esFrontLine'],
packages=find_packages(),
install_requires=[
'Flask==0.10.1',
'requests==2.3.0',