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 2.0 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
  1. [build-system]
  2. build-backend = "hatchling.build"
  3. requires = [
  4. "hatch-vcs",
  5. "hatchling",
  6. ]
  7. [project]
  8. name = "virtual_tiff"
  9. dynamic = ["version"]
  10. description = ''
  11. readme = "README.md"
  12. requires-python = ">=3.11"
  13. license = "MIT"
  14. keywords = []
  15. authors = [
  16. { name = "Max Jones", email = "14077947+maxrjones@users.noreply.github.com" },
  17. ]
  18. classifiers = [
  19. "Development Status :: 4 - Beta",
  20. "Programming Language :: Python",
  21. "Programming Language :: Python :: 3.8",
  22. "Programming Language :: Python :: 3.9",
  23. "Programming Language :: Python :: 3.10",
  24. "Programming Language :: Python :: 3.11",
  25. "Programming Language :: Python :: 3.12",
  26. "Programming Language :: Python :: Implementation :: CPython",
  27. "Programming Language :: Python :: Implementation :: PyPy",
  28. ]
  29. dependencies = [
  30. "obstore",
  31. "async_tiff",
  32. "virtualizarr",
  33. "imagecodecs",
  34. "imagecodecs-numcodecs",
  35. ]
  36. # Dependency sets under dependencies-groups are NOT available via PyPI
  37. [dependency-groups]
  38. docs = [
  39. "sphinx",
  40. "myst_nb",
  41. "pydata_sphinx_theme",
  42. "sphinx_copybutton",
  43. "sphinx_design",
  44. "sphinx_togglebutton",
  45. "sphinx-autobuild>=2021.3.14",
  46. "sphinx-autodoc-typehints",
  47. ]
  48. dev = [
  49. "codecov",
  50. "netcdf4",
  51. "mypy",
  52. "pandas-stubs",
  53. "pooch",
  54. "pre-commit",
  55. "pytest",
  56. "pytest-asyncio",
  57. "pytest-cov",
  58. "pytest-mypy",
  59. "pytest-xdist",
  60. "ruff",
  61. "s3fs",
  62. "lithops",
  63. "dask",
  64. "rioxarray",
  65. "rasterio",
  66. "earthaccess",
  67. "xarray",
  68. ]
  69. [tool.coverage.run]
  70. source_pkgs = [""]
  71. branch = true
  72. parallel = true
  73. omit = []
  74. [tool.uv.sources]
  75. virtualizarr = { git = "https://github.com/zarr-developers/VirtualiZarr.git" }
  76. obstore = { git = "https://github.com/developmentseed/obstore", subdirectory="obstore", rev = "848e7c99972f9e13c185dd1f84b1194f5621015f" }
  77. async_tiff = { git = "https://github.com/developmentseed/async-tiff", subdirectory="python", rev = "c720f01235ea706d8fb926909eb68409e07149ed" }
  78. [tool.hatch.version]
  79. source = "vcs"
  80. [tool.hatch.build.targets.wheel]
  81. packages = [
  82. "src/virtual_tiff",
  83. ]
Tip!

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

Comments

Loading...