forked from INGInious/INGInious
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (98 loc) · 3.52 KB
/
pyproject.toml
File metadata and controls
113 lines (98 loc) · 3.52 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# This file is part of INGInious. See the LICENSE and the COPYRIGHTS files for
# more information about the licensing of this file.
[build-system]
requires = ["setuptools==68.2.2", "setuptools-scm==8.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "INGInious"
dynamic = ["version"]
authors = [
{name = "INGInious contributors", email = "inginious@info.ucl.ac.be"},
]
description = "An intelligent grader that allows secured and automated testing of code made by students."
readme = "README.rst"
requires-python = ">=3.9"
keywords = ["autograder", "programming", "training", "learning", "education",
"mooc", "autograding", "evaluation", "grading", "exercise", "interview",
"assessment", "lti", "learn-to-code", "programming-exercise", "e-assessment",
"technical-coding-interview", "coding-interviews", "inginious" ]
license = {text = "AGPL 3"}
classifiers = [ # https://pypi.org/classifiers/
"Programming Language :: Python :: 3",
"Programming Language :: JavaScript",
"Framework :: Flask",
"Framework :: Pytest",
"Framework :: Setuptools Plugin",
"Framework :: Sphinx",
"Framework :: AsyncIO",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Topic :: Education",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Operating System :: POSIX :: Linux"
]
dependencies = [
"docker==7.1.0",
"docutils==0.21.2",
"Flask==3.0.2",
"Flask-Mail==0.10.0",
"itsdangerous==2.2.0",
"Jinja2==3.1.5",
"lti==0.9.5",
"PyLTI1p3==2.0.0",
"MarkupSafe==3.0.2",
"msgpack==1.1.0",
"natsort==8.4.0",
"psutil==6.1.1",
"pymongo==4.11",
"pytidylib==0.3.2",
"PyYAML==6.0.2",
"pyzmq==26.2.1",
"requests==2.31.0",
"requests-oauthlib==2.0.0",
"sh==2.2.1",
"watchdog==6.0.0",
"Werkzeug==3.0.1",
"WsgiDAV==4.3.3",
"zipstream==1.1.4",
"pytidylib==0.3.2",
"argon2-cffi == 23.1.0"
]
[project.optional-dependencies]
ldap = ["ldap3==2.9.1"]
saml2 = ["python3-saml==1.16.0"]
test = [
"pytest == 8.3.4",
"coverage == 7.6.9"
]
doc = [
"ipython==8.12.3",
"sphinx==7.4.7",
"sphinx-autodoc-typehints==2.3.0",
"sphinx-rtd-theme==3.0.0",
"sphinx-tabs==3.4.5"
]
[project.scripts] # in windows scripts need a terminal. If launched from gui it will open one. To prevent this : use [project.gui-scripts] instead
inginious-agent-docker = "inginious.scripts.agent_docker:main"
inginious-agent-mcq = "inginious.scripts.agent_mcq:main"
inginious-backend = "inginious.scripts.backend:main"
inginious-webapp = "inginious.scripts.webapp:main"
inginious-webdav = "inginious.scripts.webdav:main"
inginious-install = "inginious.scripts.install:main"
inginious-autotest = "inginious.scripts.autotest:main"
inginious-synchronize = "inginious.scripts.sync.synchronize:main"
inginious-container-update = "inginious.scripts.container_update:main"
inginious-database-update = "inginious.scripts.database_update:main"
inginious-test-task = "inginious.scripts.task_tester.task_tester:main"
inginious-submission-anonymizer = "inginious.scripts.task_tester.submission_anonymizer:main"
[project.urls]
Homepage = "https://inginious.org/"
Documentation = "https://docs.inginious.org"
Repository = "https://github.com/INGInious/INGInious"
Issues ="https://github.com/INGInious/INGInious/issues"
# enables setuptools_scm
[tool.setuptools_scm]
# automatically find packages in the project
[tool.setuptools.packages.find]