53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
import io
|
|
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
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()
|
|
|
|
about = {}
|
|
with io.open(
|
|
os.path.join(here, "tutorvision", "__about__.py"),
|
|
"rt",
|
|
encoding="utf-8",
|
|
) as f:
|
|
exec(f.read(), about)
|
|
|
|
setup(
|
|
name="tutor-vision",
|
|
version=about["__version__"],
|
|
url="https://github.com/overhangio/tutor-vision",
|
|
project_urls={
|
|
"Code": "https://github.com/overhangio/tutor-vision",
|
|
"Issue tracker": "https://github.com/overhangio/tutor-vision/issues",
|
|
},
|
|
license="AGPLv3",
|
|
author="Overhang.IO",
|
|
description="vision plugin for Tutor",
|
|
long_description=readme,
|
|
packages=find_packages(exclude=["tests*"]),
|
|
include_package_data=True,
|
|
python_requires=">=3.5",
|
|
install_requires=["tutor-openedx"],
|
|
entry_points={
|
|
"tutor.plugin.v0": [
|
|
"vision = tutorvision.plugin"
|
|
]
|
|
},
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"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",
|
|
],
|
|
)
|