-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.25 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
[tool.poetry]
name = "data-access-service"
version = "0.1.0"
description = ""
authors = ["utas-raymondng <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
boto3 = "^1.28.0"
pre-commit = "^3.8.0"
flask = "^3.0.3"
dask = {extras = ["dataframe"], version = ">=2024.9.1"}
python-dotenv = "1.0.1"
fuzzywuzzy = "^0.18.0"
gunicorn = "22.0.0"
gevent = "24.2.1"
h5py = "3.11.0"
jsonify = "^0.5"
matplotlib = "3.10.0"
pandas = "^2.2.3"
pyarrow = "17.0.0"
python = "^3.10.14"
python-levenshtein = "^0.25.1"
scipy = "1.14.0"
logging = "^0.4.9.6"
requests = "2.32.3"
watchdog = "^4.0.1"
xmltodict = "^0.13.0"
black = "^24.8.0"
cryptography = "<43.0.0"
cartopy = "^0.24.1"
gsw = "^3.6.19"
seaborn = "^0.13.2"
windrose = ">=1.9.2"
# Dependency from a GitHub repository, use tag = "v0.1.32" or branch = "xxx"
aodn_cloud_optimised = { git = "https://github.com/aodn/aodn_cloud_optimised.git", tag = "v0.1.34" }
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts] # this will be later useful if build the wheel file from any poetry-managed repositories, then install and run the application from the wheel file instead of GitHub's source code
data-access-service = "data_access_service.run:main"