forked from kamyar1979/rest-catalyst
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (60 loc) · 1.46 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
[tool.poetry]
name = "RestCatalyst"
version = "0.0.0"
description = "Utiliry and services for Ostadkar Project"
authors = ["Kamyar Inanloo <[email protected]>", "Navid Tadjalli <[email protected]>", "Sina Mehrabi <[email protected]>", "Sajedeh Tafazzoli <[email protected]>"]
packages = [
{ include = "./catalyst" },
]
[virtualenvs]
create = false
[[tool.poetry.source]]
name = "ostadkar"
url = "${NEXUS_URL}/repository/pypi-all/simple"
default = true
[[tool.poetry.source]]
name = "ostadkar_publish"
url = "${NEXUS_HOST}/repository/pypi-internal/"
secondary = true
[tool.poetry.dependencies]
python = "^3.9"
setuptools = "^51.0.0"
geojson = "^2.5.0"
pytz = "^2020.4"
Khayyam = "^3.0.17"
Cerberus = "^1.3.2"
toolz = "^0.11.1"
python-rapidjson = "^1.0"
SQLAlchemy = "^1.3.22"
cbor = "^1.0.0"
pyparsing = "^2.4.7"
u-msgpack-python = "^2.7.1"
GeoAlchemy2 = "^0.8.4"
Flask = "^2.0.3"
Shapely = "^1.7.1"
ntplib = "^0.3.4"
json2html = "^1.3.0"
base36 = "*"
Flask-SQLAlchemy = "^2.4.4"
aiohttp = "^3.7.3"
PyYAML = "^5.3.1"
requests = "^2.25.1"
numpy = "^1.19.4"
redis = "^3.5.3"
aioredis = "^2.0.0"
durations = "^0.3.3"
blinker = "^1.4"
tenacity = "^6.3.1"
Inflector = "^3.0.1"
tomlkit = "^0.7.0"
pynng = "^0.7.1"
hy = "1.0a3"
sentry-sdk="1.9.8"
[build-system]
requires = ["poetry>=0.12", "poetry-dynamic-versioning"]
build-backend = "poetry.masonry.api"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "^(?P<base>\\d+\\.\\d+\\.\\d+)"
format = "{base}"
vcs = "git"