forked from hastexo/tutor-contrib-retirement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.5 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
42
43
44
45
46
47
import io
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
def load_readme():
with io.open(os.path.join(HERE, "README.md"), "rt", encoding="utf8") as f:
return f.read()
setup(
name="tutor-contrib-retirement",
use_scm_version=True,
url="https://github.com/hastexo/tutor-contrib-retirement",
project_urls={
"Code": "https://github.com/hastexo/tutor-contrib-retirement",
"Issue tracker": "https://github.com/hastexo/tutor-contrib-retirement/issues", # noqa: E501
},
license="AGPLv3",
author="hastexo",
description="User retirement plugin for Tutor",
long_description=load_readme(),
long_description_content_type='text/markdown',
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.8",
install_requires=["tutor <18, >=16.1.7"],
setup_requires=["setuptools-scm"],
entry_points={
"tutor.plugin.v1": [
"retirement = tutorretirement.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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)