2019-01-22 20:25:04 +00:00
|
|
|
import io
|
|
|
|
import os
|
2019-06-23 11:23:27 +00:00
|
|
|
from setuptools import find_packages, setup
|
2019-01-22 20:25:04 +00:00
|
|
|
|
|
|
|
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-10-14 04:26:25 +00:00
|
|
|
requirements = []
|
|
|
|
with io.open(
|
|
|
|
os.path.join(here, "requirements", "base.in"), "rt", encoding="utf-8"
|
|
|
|
) as f:
|
|
|
|
requirements = [line.strip() for line in f]
|
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
|
|
|
|
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-02-20 12:52:25 +00:00
|
|
|
url="https://docs.tutor.overhang.io/",
|
2019-01-22 20:25:04 +00:00
|
|
|
project_urls={
|
2019-02-20 12:52:25 +00:00
|
|
|
"Documentation": "https://docs.tutor.overhang.io/",
|
2019-06-23 17:56:15 +00:00
|
|
|
"Code": "https://github.com/overhangio/tutor",
|
|
|
|
"Issue tracker": "https://github.com/overhangio/tutor/issues",
|
2019-02-20 12:52:25 +00:00
|
|
|
"Community": "https://discuss.overhang.io",
|
2019-01-22 20:25:04 +00:00
|
|
|
},
|
|
|
|
license="AGPLv3",
|
2019-06-23 18:03:19 +00:00
|
|
|
author="Overhang.io",
|
|
|
|
author_email="contact@overhang.io",
|
2019-10-09 10:41:32 +00:00
|
|
|
description="The docker-based Open edX distribution designed for peace of mind",
|
2019-01-22 20:25:04 +00:00
|
|
|
long_description=readme,
|
2019-09-23 09:36:21 +00:00
|
|
|
long_description_content_type="text/x-rst",
|
2019-06-23 11:23:27 +00:00
|
|
|
packages=find_packages(exclude=["tests*"]),
|
2019-08-31 10:27:56 +00:00
|
|
|
include_package_data=True,
|
2019-03-24 21:44:34 +00:00
|
|
|
python_requires=">=3.5",
|
2019-10-14 04:26:25 +00:00
|
|
|
install_requires=requirements,
|
2019-08-20 15:01:34 +00:00
|
|
|
entry_points={"console_scripts": ["tutor=tutor.commands.cli:main"]},
|
2019-01-22 20:25:04 +00:00
|
|
|
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",
|
2019-03-24 21:44:34 +00:00
|
|
|
"Programming Language :: Python :: 3.5",
|
2019-01-22 20:25:04 +00:00
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
2020-09-04 09:07:34 +00:00
|
|
|
"Programming Language :: Python :: 3.8",
|
2020-10-15 14:45:43 +00:00
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
2019-01-22 20:25:04 +00:00
|
|
|
],
|
|
|
|
)
|