-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
40 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
import io
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, "README.md"), "rt", encoding="utf8") as f:
readme = f.read()
setup(
name="tutor-contrib-s3",
use_scm_version=True,
url="https://github.com/hastexo/tutor-contrib-s3/",
project_urls={
"Code": "https://github.com/hastexo/tutor-contrib-s3",
"Issue tracker": "https://github.com/hastexo/tutor-contrib-s3/issues",
},
license="AGPLv3",
author='hastexo',
author_email='[email protected]',
description="A Tutor plugin for object storage via RADOS Gateway",
long_description=readme,
long_description_content_type='text/markdown',
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.9",
install_requires=["tutor <20, >=14.0.0"],
setup_requires=["setuptools-scm"],
entry_points={"tutor.plugin.v1": ["s3 = tutors3.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",
],
)