forked from scottyhq/dinosar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 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
48
49
50
51
52
53
[tool.poetry]
name = "dinosar"
version = "0.1.4"
description = "SAR processing on the Cloud"
authors = ["Scott Henderson <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/scottyhq/dinosar"
repository = "https://github.com/scottyhq/dinosar"
keywords = ["SAR", "Cloud", "Batch", "AWS"]
[tool.poetry.scripts]
get_inventory_asf = 'dinosar.cli.get_inventory_asf:main'
plot_inventory_asf = 'dinosar.cli.plot_inventory_asf:main'
prep_topsApp_local = 'dinosar.cli.prep_topsApp_local:main'
[tool.poetry.dependencies]
python = "^3.7"
geopandas = "^0.8"
pandas = "^1.0"
shapely = "^1.6"
matplotlib = "^3.1"
pyyaml = "^5.2"
lxml = "^4.4"
requests = "^2.22"
# plotting/graphics libraries optional
cartopy = { version = "^0.18", optional = true }
# documentation libraries optional
sphinx = { version = "^2.3", optional = true }
sphinx_rtd_theme = { version = "^0.4", optional = true }
sphinxcontrib-apidoc = { version = "^0.3", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^5.3"
pytest-cov = "^2.8"
flake8 = "^3.7"
black = "^19.10b0"
awscli = "^1.17"
pre-commit = "^1.10"
dunamai = "^1.0"
[tool.poetry.extras]
vis = ["cartopy"]
docs = ["sphinx","sphinx_rtd_theme","sphinxcontrib-apidoc"]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"