mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-11 07:41:02 +00:00
Fix install from pypi
After installing from pypi, install was broken with "ModuleNotFoundError: No module named 'tutor.command".
This commit is contained in:
parent
4c96e83e3c
commit
b42ed3638e
@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥".
|
|||||||
|
|
||||||
## Latest
|
## Latest
|
||||||
|
|
||||||
|
- [Bugfix] Fix install from pypi
|
||||||
- [Improvement] Get rid of kubernetes python package dependency
|
- [Improvement] Get rid of kubernetes python package dependency
|
||||||
|
|
||||||
## 3.4.0 (2019-06-17)
|
## 3.4.0 (2019-06-17)
|
||||||
|
4
setup.py
4
setup.py
@ -1,6 +1,6 @@
|
|||||||
import io
|
import io
|
||||||
import os
|
import os
|
||||||
from setuptools import setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
here = os.path.abspath(os.path.dirname(__file__))
|
here = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|
||||||
@ -26,7 +26,7 @@ setup(
|
|||||||
author_email="regis@behmo.com",
|
author_email="regis@behmo.com",
|
||||||
description="The Open edX distribution for the busy system administrator",
|
description="The Open edX distribution for the busy system administrator",
|
||||||
long_description=readme,
|
long_description=readme,
|
||||||
packages=["tutor"],
|
packages=find_packages(exclude=["tests*"]),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
python_requires=">=3.5",
|
python_requires=">=3.5",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
Loading…
Reference in New Issue
Block a user