-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
60 lines (57 loc) · 1.21 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
[project]
name = "scivision"
version = "0.7.4"
description = "Scivision"
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
maintainers = [
{ email = "[email protected]" }
]
dependencies = [
"matplotlib~=3.6",
"numpy~=1.23",
"scipy~=1.9",
"pandas>=1.5,<3",
"fsspec>=2022.11",
"pyyaml~=6.0",
"requests~=2.28",
"aiohttp~=3.8",
"intake~=0.6",
"intake-xarray~=0.6",
"pydantic~=1.9",
"exifread~=3.0",
"distinctipy~=1.2",
"ipython~=8.3",
"tqdm~=4.65",
"netcdf4<1.7"
]
[project.optional-dependencies]
dev = [
"pre-commit"
]
test = [
"pytest"
]
doc = [
"sphinx",
"sphinx_rtd_theme",
"pydata-sphinx-theme",
"readthedocs-sphinx-search",
"m2r2"
]
gcs = [
"gcsfs>=2022.02"
]
s3 = [
"s3fs"
]
cloud_extra = ["scivision[gcs,s3]"]
[project.urls]
"Homepage" = "https://sci.vision"
"Source" = "https://github.com/alan-turing-institute/scivision"
"Issue tracker" = "https://github.com/alan-turing-institute/scivision/issues"
[project.scripts]
scivision-catalog-json-schema = "scivision.catalog.gen_json_schema:entry_point"
scivision-check-datasets = "scivision.catalog.check_datasets:entry_point"
scivision-check-models = "scivision.catalog.check_models:entry_point"