forked from WeJie/tutor-aliyun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 1.38 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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-aliyun",
version="0.0.8",
url="https://github.com/WeJie/tutor-aliyun",
project_urls={
"Documentation": "https://github.com/WeJie/tutor-aliyun",
"Code": "https://github.com/WeJie/tutor-aliyun",
"Issue tracker": "https://github.com/WeJie/tutor-aliyun/issues",
"Community": "https://github.com/WeJie/tutor-aliyun",
},
license="AGPLv3",
author="weijie",
author_email="wejie00@foxmail.com",
description="Aliyun plugin for Tutor, for deploying edx instance to aliyun by tutor",
long_description=readme,
packages=["tutoraliyun"],
include_package_data=True,
install_requires=["tutor-openedx"],
python_requires=">=3.5",
entry_points={"tutor.plugin.v0": ["aliyun = tutoraliyun.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",
],
)