-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (63 loc) · 1.88 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
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "glimpse"
version = "0.1.0b1"
description = "Timelapse camera calibration and surface motion extraction"
authors = ["Ethan Welty <[email protected]>", "Douglas Brinkerhoff"]
readme = "README.md"
homepage = "https://github.com/ezwelty/glimpse"
repository = "https://github.com/ezwelty/glimpse"
keywords = ["glaciology", "timelapse", "photogrammetry", "camera calibration", "feature tracking"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
"Topic :: Scientific/Engineering :: Image Recognition"
]
packages = [{ include = "glimpse", from = "src" }]
[tool.poetry.dependencies]
python = "^3.7.0"
numpy = "^1.18.5"
lmfit = "^1.0.1"
piexif = "^1.1.3"
progress = "^1.5"
sharedmem = "^0.3.7"
matplotlib = "^3.2.1"
GDAL = "3.2.0"
typing_extensions = "^3.7.4"
scipy = "^1.4.1"
opencv-python-headless = "^4.4.0,<=4.8.1.78"
[tool.poetry.group.dev.dependencies]
pytest = "^6.0"
sphinx = "^3.1.0"
sphinx-rtd-theme = "^0.4.3"
flake8 = "^3.8.3"
black = "^19.10b0"
flake8-black = "^0.2.0"
flake8-annotations = "^2.1.0"
coverage = {extras = ["toml"], version = "^5.1"}
pytest-cov = "^2.10.0"
flake8-docstrings = "^1.5.0"
isort = "^5.6.4"
flake8-isort = "^4.0.0"
codecov = "^2.1.13"
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["glimpse"]
[tool.coverage.report]
show_missing = true
[tool.isort]
profile = "black"
case_sensitive = false
[tool.pytest.ini_options]
doctest_optionflags = ["NORMALIZE_WHITESPACE", "ELLIPSIS"]
[build-system]
requires = ["poetry>=1.4.0"]
build-backend = "poetry.masonry.api"