-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
46 lines (41 loc) · 1.42 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
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-backup",
use_scm_version=True,
url="https://github.com/hastexo/tutor-contrib-backup",
project_urls={
"Code": "https://github.com/hastexo/tutor-contrib-backup",
"Issue tracker": "https://github.com/hastexo/tutor-contrib-backup/issues", # noqa: E501
},
license="AGPLv3",
author="hastexo",
description="backup 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.9",
install_requires=["tutor <19, >=16.0.0"],
setup_requires=["setuptools-scm"],
entry_points={
"tutor.plugin.v1": [
"backup = tutorbackup.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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)