tutor/setup.py

45 lines
1.6 KiB
Python
Raw Normal View History

import io
import os
from setuptools import find_packages, 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()
about = {}
with io.open(os.path.join(here, "tutor", "__about__.py"), "rt", encoding="utf-8") as f:
exec(f.read(), about)
setup(
name="tutor-openedx",
version=about["__version__"],
2019-02-20 12:52:25 +00:00
url="https://docs.tutor.overhang.io/",
project_urls={
2019-02-20 12:52:25 +00:00
"Documentation": "https://docs.tutor.overhang.io/",
"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",
},
license="AGPLv3",
author="Overhang.io",
author_email="contact@overhang.io",
description="The Open edX distribution for the busy system administrator",
long_description=readme,
packages=find_packages(exclude=["tests*"]),
package_data={"tutor": ["templates/**"]},
python_requires=">=3.5",
install_requires=["appdirs", "click>=7.0", "click_repl", "jinja2", "pyyaml>=4.2b1"],
entry_points={"console_scripts": ["tutor=tutor.commands.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.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)