forked from yangzhenweiq/tutor-openedx_settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 838 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
setup(
name="tutor-openedxsettings",
version="0.0.1",
license="AGPLv3",
author="eliteu",
author_email="code@eliteu.cn",
description="A Tutor plugin for openedx settings",
packages=["tutoropenedxsettings"],
include_package_data=True,
python_requires=">=3.5",
entry_points={"tutor.plugin.v0": ["openedx_settings = tutoropenedxsettings.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",
],
)