-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (46 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
48 lines (46 loc) · 1.11 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
[build-system]
requires = [
"setuptools>=61.0",
"certifi>=14.05.14",
"six>=1.10",
"python_dateutil>=2.5.3",
"urllib3>=1.15.1",
"prance>=23.6.21.0",
"openapi-spec-validator>=0.7.1",
"jsonschema>=4.23.0",
"pyyaml>=5.2b1",
"appdirs>=1.4.4",
"pyjwt>=2.10.1"
]
build-backend = "setuptools.build_meta"
[project]
name = "recodex-pylib"
version = "0.2.2"
authors = [
{ name="Vojtech Kloda", email="vojtech.kloda@gmail.com" },
{ name="Martin Kruliš", email="krulis@d3s.mff.cuni.cz"},
]
description = "A python library for ReCodEx API calls."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"setuptools>=61.0",
"certifi>=14.05.14",
"six>=1.10",
"python_dateutil>=2.5.3",
"urllib3>=1.15.1",
"prance>=23.6.21.0",
"openapi-spec-validator>=0.7.1",
"jsonschema>=4.23.0",
"pyyaml>=5.2b1",
"appdirs>=1.4.4",
"pyjwt>=2.10.1"
]
[project.urls]
Homepage = "https://github.com/ReCodEx/pylib"
Issues = "https://github.com/ReCodEx/pylib/issues"