-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
48 lines (39 loc) · 1.35 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
[tool.poetry]
name = "empiarreader"
version = "0.0.4"
description = "EMPIARReader provides utilities to lazily load data from EMPIAR into a machine-learning-friendly dataset format or to locally download the files."
authors = ["mooniean <[email protected]>", "ots22 <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
intake = "^0.6.5"
bs4 = "^0.0.1"
matplotlib = "^3.6.1"
requests = "^2.28.1"
scikit-image = "^0.19.3"
xarray = "^2022.9.0"
mrcfile = "^1.4.3"
starfile = "^0.4.11"
intake-xarray = "^0.6.1"
aiohttp = "^3.8.3"
setuptools = "^67.7.2"
pre-commit = "^3.3.3"
# Dependencies for 'extras'
Sphinx = { version = "^5.0", optional = true }
pydata-sphinx-theme = { version = "^0.7", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
[tool.poetry.extras]
doc = ["Sphinx", "pydata-sphinx-theme"]
[build-system]
requires = ["poetry-core @ git+https://github.com/python-poetry/poetry-core.git@main"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."intake.drivers"]
mrc = "empiarreader:MrcSource"
star = "empiarreader:StarSource"
empiar = "empiarreader:EmpiarCatalog"
[tool.poetry.scripts]
empiarreader = "empiarreader.cli:main"
[tool.poetry.urls]
"Homepage" = "https://github.com/alan-turing-institute/empiarreader"
"Bug Tracker" = "https://github.com/alan-turing-institute/empiarreader/issues"