tutor/setup.py

50 lines
1.4 KiB
Python
Raw Normal View History

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()
setup(
name="tutor-openedx",
version="3.0.0",
url="http://docs.tutor.overhang.io/",
project_urls={
"Documentation": "https://docs.tutor.overhang.io/",
"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",
],
)