Fix install from pypi

After installing from pypi, install was broken with
"ModuleNotFoundError: No module named 'tutor.command".
This commit is contained in:
Régis Behmo 2019-06-23 13:23:27 +02:00
parent 4c96e83e3c
commit b42ed3638e
2 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥".
## Latest
- [Bugfix] Fix install from pypi
- [Improvement] Get rid of kubernetes python package dependency
## 3.4.0 (2019-06-17)

View File

@ -1,6 +1,6 @@
import io
import os
from setuptools import setup
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
@ -26,7 +26,7 @@ setup(
author_email="regis@behmo.com",
description="The Open edX distribution for the busy system administrator",
long_description=readme,
packages=["tutor"],
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.5",
install_requires=[