Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pyproject.toml 1.8 KB

You have to be logged in to leave a comment. Sign In
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
  1. [tool.poetry]
  2. name = "deepicedrain"
  3. version = "0.4.2"
  4. description = "Mapping and monitoring deep subglacial water activity in Antarctica using remote sensing and machine learning."
  5. authors = ["Wei Ji Leong <weiji.leong@vuw.ac.nz>"]
  6. license = "LGPL-3.0-or-later"
  7. [tool.poetry.dependencies]
  8. alphashape = "^1.3.1"
  9. atl11 = {git = "https://github.com/suzanne64/ATL11.git", rev = "3f570a558f876cf648062703a2fa3bf5924177c4"}
  10. cupy-cuda112 = {version = "^9.5.0", optional = true}
  11. cython = "^0.29.24"
  12. dask = {extras = ["distributed"], version = "^2021.10.0"}
  13. dask-cuda = {version = "^21.12.0a211025", optional = true}
  14. datashader = "^0.13.0"
  15. dvc = "^2.5.4"
  16. geopandas = "^0.9.0"
  17. graphviz = "^0.17"
  18. h5netcdf = "^0.11.0"
  19. hvplot = "^0.7.3"
  20. icepyx = "^0.4.0"
  21. intake = {extras = ["dataframe", "server"], version = "^0.6.1"}
  22. intake-geopandas = "^0.2.4"
  23. intake-parquet = "^0.2.3"
  24. intake-xarray = "^0.4.1"
  25. jupyterlab = "^3.4.2"
  26. matplotlib = "^3.4.2"
  27. numcodecs = "^0.8.0"
  28. Pint = "^0.17"
  29. Pint-Pandas = {git = "https://github.com/hgrecco/pint-pandas.git", rev = "4d6b9cfc82abe8a932615119da71406a025f2487"}
  30. pointcollection = {git = "https://github.com/SmithB/pointCollection.git", rev = "64c8193dec9a339357d6e66c349c747abfaea885"}
  31. pyarrow = "5.0.0"
  32. pyepsg = "^0.4.0"
  33. pygmt = "^0.4.0"
  34. python = "~3.8"
  35. python-snappy = "^0.6.0"
  36. pyproj = "^3.1.0"
  37. scikit-learn = "^0.24.2"
  38. tqdm = "^4.61.1"
  39. uncertainties = "^3.1.6"
  40. xarray = "^0.19.0"
  41. [tool.poetry.dev-dependencies]
  42. black = "^21.7b0"
  43. dask-labextension = "^5.1.0"
  44. jupytext = "^1.11.4"
  45. pytest = "^6.2.4"
  46. pytest-bdd = "^4.1.0"
  47. pytest-xdist = "^2.3.0"
  48. [tool.poetry.extras]
  49. cuda = ["cupy-cuda112", "dask-cuda"]
  50. [tool.poetry.plugins."intake.catalogs"]
  51. "atlas_cat" = "deepicedrain:catalog"
  52. [tool.pytest.ini_options]
  53. bdd_features_base_dir = "deepicedrain/"
  54. [build-system]
  55. requires = ["poetry-core>=1.0.0"]
  56. build-backend = "poetry.core.masonry.api"
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...