2019-01-22 20:25:04 +00:00
|
|
|
import io
|
|
|
|
import os
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
|
|
with io.open(os.path.join(here, "README.rst"), "rt", encoding="utf8") as f:
|
|
|
|
readme = f.read()
|
|
|
|
|
Fix version information in bundle
`./dist/tutor --version` raises an error:
Traceback (most recent call last):
File "main", line 4, in <module>
File "tutor/cli.py", line 21, in main
File "click/core.py", line 764, in __call__
File "click/core.py", line 716, in main
File "click/core.py", line 641, in make_context
File "click/core.py", line 1089, in parse_args
File "click/core.py", line 940, in parse_args
File "click/core.py", line 1477, in handle_parse_result
File "click/core.py", line 96, in invoke_param_callback
File "click/decorators.py", line 270, in callback
RuntimeError: Could not determine version
[1659] Failed to execute script main
To address this, we pass the version value directly to click.
This is for issue #156.
2019-02-10 17:31:48 +00:00
|
|
|
about = {}
|
|
|
|
with io.open(os.path.join(here, "tutor", "__about__.py"), "rt", encoding="utf-8") as f:
|
|
|
|
exec(f.read(), about)
|
|
|
|
|
2019-01-22 20:25:04 +00:00
|
|
|
setup(
|
|
|
|
name="tutor-openedx",
|
Fix version information in bundle
`./dist/tutor --version` raises an error:
Traceback (most recent call last):
File "main", line 4, in <module>
File "tutor/cli.py", line 21, in main
File "click/core.py", line 764, in __call__
File "click/core.py", line 716, in main
File "click/core.py", line 641, in make_context
File "click/core.py", line 1089, in parse_args
File "click/core.py", line 940, in parse_args
File "click/core.py", line 1477, in handle_parse_result
File "click/core.py", line 96, in invoke_param_callback
File "click/decorators.py", line 270, in callback
RuntimeError: Could not determine version
[1659] Failed to execute script main
To address this, we pass the version value directly to click.
This is for issue #156.
2019-02-10 17:31:48 +00:00
|
|
|
version=about["__version__"],
|
2019-01-22 20:25:04 +00:00
|
|
|
url="http://docs.tutor.overhang.io/",
|
|
|
|
project_urls={
|
2019-02-12 16:43:01 +00:00
|
|
|
"Documentation": "http://docs.tutor.overhang.io/",
|
2019-01-22 20:25:04 +00:00
|
|
|
"Code": "https://github.com/regisb/tutor",
|
|
|
|
"Issue tracker": "https://github.com/regisb/tutor/issues",
|
|
|
|
},
|
|
|
|
license="AGPLv3",
|
|
|
|
author="Régis Behmo",
|
|
|
|
author_email="regis@behmo.com",
|
|
|
|
description="The Open edX distribution for the busy system administrator",
|
|
|
|
long_description=readme,
|
|
|
|
packages=["tutor"],
|
|
|
|
include_package_data=True,
|
|
|
|
python_requires=">=3.6",
|
|
|
|
install_requires=[
|
|
|
|
"appdirs",
|
|
|
|
"click",
|
|
|
|
"click_repl",
|
|
|
|
"jinja2",
|
|
|
|
"kubernetes",
|
|
|
|
"pyyaml"
|
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'tutor=tutor.cli:main',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
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.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
],
|
|
|
|
)
|