forked from cms-dev/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 3.21 KB
/
pyproject.toml
File metadata and controls
76 lines (66 loc) · 3.21 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
[project]
dynamic = ["version", "entry-points", "scripts"]
name = "cms"
license = "AGPL-3.0-or-later"
maintainers = [ { name = "The CMS development team", email = "contestms@googlegroups.com" } ]
readme = "README.md"
description = "A contest management system and grader for IOI-like programming competitions"
requires-python = ">=3.11"
keywords = ["ioi", "programming contest", "grader", "management system"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"tornado==4.5.3", # http://www.tornadoweb.org/en/stable/releases.html
"psycopg2==2.9.10", # http://initd.org/psycopg/articles/tag/release/
"sqlalchemy>=1.3,<1.4", # http://docs.sqlalchemy.org/en/latest/changelog/index.html
"netifaces>=0.10,<0.12", # https://bitbucket.org/al45tair/netifaces/src/
"pycryptodomex==3.23.0", # https://github.com/Legrandin/pycryptodome/blob/master/Changelog.rst
"psutil>=5.5,<7.1", # https://github.com/giampaolo/psutil/blob/master/HISTORY.rst
"requests==2.32.3", # https://pypi.python.org/pypi/requests
"gevent==25.8.1", # http://www.gevent.org/changelog.html
"greenlet>=3.0rc1",
"werkzeug<1.0", # https://github.com/pallets/werkzeug/blob/master/CHANGES
"backports.ssl-match-hostname==3.7.0.1", # required by tornado<5.0
"patool>=1.12,<4.1", # https://github.com/wummel/patool/blob/master/doc/changelog.txt
"bcrypt>=3.1,<4.4", # https://github.com/pyca/bcrypt/
"chardet>=3.0,<5.3", # https://pypi.python.org/pypi/chardet
"babel==2.12.1", # http://babel.pocoo.org/en/latest/changelog.html
"pyxdg>=0.26,<0.29", # https://freedesktop.org/wiki/Software/pyxdg/
"Jinja2>=2.10,<2.11", # http://jinja.pocoo.org/docs/latest/changelog/
"markdown-it-py==3.0.0", # https://github.com/executablebooks/markdown-it-py/blob/master/CHANGELOG.md
"setuptools>=80,<81", # https://setuptools.pypa.io/en/latest/history.html
# See https://github.com/pallets/markupsafe/issues/286 but breaking change in
# MarkupSafe causes jinja to break
"MarkupSafe==2.0.1",
# Only for some importers:
"pyyaml>=5.3,<6.1", # http://pyyaml.org/wiki/PyYAML
# Only for cmsPrometheusExporter
"prometheus-client>=0.7,<0.22", # https://pypi.org/project/prometheus-client
# Only for cmsTelegramBot
"python-telegram-bot>=21.9,<21.12", # https://pypi.org/project/python-telegram-bot
]
[project.urls]
Documentation = "https://cms.readthedocs.io/"
Repository = "https://github.com/cms-dev/cms"
[project.optional-dependencies]
devel = [
# Only for testing
"beautifulsoup4>=4.8,<4.14",
"coverage>=4.5,<7.10",
"pytest",
"pytest-cov",
# Only for building documentation
# XXX: The version of Sphinx needed to build our documentation
# is incompatible with the old version of jinja2 we need.
# "Sphinx>=1.8,<1.9",
]
[build-system]
requires = ["setuptools>=80,<81", "babel==2.12.1"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
python_files = ["test_*.py", "*_test.py", "*Test.py"]
testpaths = ["cmstestsuite/unit_tests"]