-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (60 loc) · 1.87 KB
/
pyproject.toml
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
[tool]
[tool.poetry]
name = "invenio-integration-tests"
version = "0.0.1"
description = "invenio integration tests"
license = "MIT"
keywords = ["Invenio", "oarepo"]
classifiers = ["Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Development Status :: 3 - Alpha"
]
homepage = "https://github.com/oarepo/invenio-integration-tests"
authors = ["Tomas HLava @ CESNET <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
invenio = { optional = true, version = ">=3.3.0,<3.4.0", extras = [ "base","metadata","files","postgresql","elasticsearch7" ] }
flask-oauthlib = { optional = true, version = "*" }
invenio-oauthclient = { optional = true, version = "*" }
invenio-oauth2server = { optional = true, version = "*" }
invenio-logging = { optional = true, version = "*", extras = [ "sentry-sdk" ] }
sqlalchemy = "<1.4.0"
#flask-caching = ">1.10.1"
marshmallow-utils = "^0.4"
celery = "<=5.0.5"
pillow = ">=8.3.2"
s3-client-lib = ">=0.1.9"
jsonschema = ">=3.0.0,<4.0.0"
flask = "<2.0.0"
wtforms = "<3.0.0"
flask-wtf = "<1.0.0"
lxml = ">=4.6.5"
markupsafe = "<=2.0.1"
itsdangerous = "<=2.0.1"
jinja2 = "<3.1.0"
pyjwt = ">=2.4.0"
#nbconvert = { version = ">=6.3.0", extras = [ "execute" ] }
#mistune = ">=2.0.3"
setuptools = "<58.0.0"
[tool.poetry.extras]
"invenio3.3" = [
"invenio",
"invenio-accounts",
"requests",
"s3-client-lib",
"flask-oauthlib",
"invenio-oauthclient",
"invenio-oauth2server",
"importlib_metadata",
]
"invenio3.3test" = [
"invenio",
"invenio-accounts",
"requests",
"s3-client-lib",
"flask-oauthlib",
"invenio-oauthclient",
"invenio-oauth2server",
"importlib_metadata",
]