forked from overhangio/tutor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: switch the package name from "tutor-openedx" to "tutor"
The package maintainer of the "tutor" package was kind enough to transfer ownership of the project to us. This is great, because we no longer have to use the "openedx" suffix, which is trademarked. For the time being, we keep maintaining the "tutor-openedx" package which has a 1-to-1 dependency on the "tutor" package. In the future, we expect that we will no longer push upgrades to tutor-openedx.
- Loading branch information
Showing
9 changed files
with
88 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.. parsed-literal:: | ||
pip install tutor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import io | ||
import os | ||
import sys | ||
|
||
from setuptools import setup | ||
|
||
HERE = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
|
||
def load_readme(): | ||
return """ | ||
WARNING: This project has moved to https://pypi.org/project/tutor/. You should now install Tutor with:: | ||
pip install tutor | ||
""" | ||
|
||
|
||
def load_about(): | ||
about = {} | ||
with io.open( | ||
os.path.join(HERE, "tutor", "__about__.py"), "rt", encoding="utf-8" | ||
) as f: | ||
exec(f.read(), about) # pylint: disable=exec-used | ||
return about | ||
|
||
|
||
ABOUT = load_about() | ||
|
||
setup( | ||
name="tutor-openedx", | ||
version=ABOUT["__version__"], | ||
url="https://docs.tutor.overhang.io/", | ||
project_urls={ | ||
"Documentation": "https://docs.tutor.overhang.io/", | ||
"Code": "https://github.com/overhangio/tutor", | ||
"Issue tracker": "https://github.com/overhangio/tutor/issues", | ||
"Community": "https://discuss.overhang.io", | ||
}, | ||
license="AGPLv3", | ||
author="Overhang.io", | ||
author_email="[email protected]", | ||
description="The Docker-based Open edX distribution designed for peace of mind", | ||
long_description=load_readme(), | ||
long_description_content_type="text/x-rst", | ||
packages=[], | ||
python_requires=">=3.5", | ||
install_requires=["tutor=={}".format(ABOUT["__version__"])], | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
], | ||
) | ||
sys.stderr.write(""" | ||
Installing Tutor from tutor-openedx is deprecated. You should instead install the "tutor" package with: | ||
pip install tutor | ||
""") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ def is_requirement(line): | |
ABOUT = load_about() | ||
|
||
setup( | ||
name="tutor-openedx", | ||
name="tutor", | ||
version=ABOUT["__version__"], | ||
url="https://docs.tutor.overhang.io/", | ||
project_urls={ | ||
|
@@ -47,7 +47,7 @@ def is_requirement(line): | |
license="AGPLv3", | ||
author="Overhang.io", | ||
author_email="[email protected]", | ||
description="The docker-based Open edX distribution designed for peace of mind", | ||
description="The Docker-based Open edX distribution designed for peace of mind", | ||
long_description=load_readme(), | ||
long_description_content_type="text/x-rst", | ||
packages=find_packages(exclude=["tests*"]), | ||
|