-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
84 lines (79 loc) · 2.01 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.poetry]
name = "apis-core"
version = "0.18"
description = "Base package for the APIS framework"
authors = ["Matthias Schlögl <[email protected]>", "Peter Andorfer <[email protected]>", "Stefan Resch <[email protected]>", "Richard Hadden <[email protected]>", "Gregor Pirgie <[email protected]>"]
license = "MIT"
packages = [{include = "apis_core"}, {include = "browsing"}, {include = "infos"}]
include = [{path = "LICENSE.txt", format = "sdist"}, {path = "README.rst", format = "sdist"}]
exclude = ["apis/", "manage.py", "__pycache__"]
[tool.poetry.dependencies]
python = ">=3.7, <3.11"
Django = "~3.1.8"
djangorestframework = "^3.14.0"
django-filter = "^2.4.0"
django-autocomplete-light = "~3.8.2"
django-cors-headers = "^3.5.0"
django-crum = "^0.7.9"
django-crispy-forms = "^1.10.0"
django-gm2m = "^1.1.1"
django-guardian = "^2.3.0"
django-leaflet = "^0.27.1"
django-reversion = "^3.0.8"
django-tables2 = "^2.3.3"
djangorestframework-csv = "^2.1.0"
djangorestframework-xml = "^2.0.0"
jmespath = "^0.10.0"
jsonschema = "^3.2.0"
lxml = "^4.6.2"
convertdate = "^2.3.0"
PyYAML = "^5.3.1"
rdflib = "~6.1.1"
drf-spectacular = "~0.26.1"
tablib = "^3.0.0"
regex = "^2020.11.13"
requests = "^2.25.0"
SPARQLWrapper = "^1.8.5"
unicodecsv = "^0.14.1"
django-model-utils = "^4.1.1"
django-summernote = "^0.8.11"
djangorestframework-jsonschema = "^0.1.1"
dj-database-url = "^0.5.0"
mysqlclient = "^2.0.3"
django-admin-csvexport = "^1.9"
tqdm = "^4.62.3"
pandas = ">=1.1.5, <2"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
django-extensions = "^3.0.9"
networkx = "^2.5"
flake8 = "^3.8.3"
yapf = "^0.30.0"
jupyter = "^1.0.0"
openpyxl = "^3.0.5"
spacy = "^2.3.2"
pylint = "^2.6.0"
xlrd = "^1.2.0"
lastversion = "^2.0.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"