-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (80 loc) · 2.48 KB
/
pyproject.toml
File metadata and controls
89 lines (80 loc) · 2.48 KB
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
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "pypolsar"
version = "2.0.4"
description = "PyPolSAR is a python module for Polarimetric Synthetic Aperture Radar (PolSAR) data processing."
readme = "README.md"
authors = [
"Earth-Observation <is3mansour@gmail.com>"
]
license = "GPL-3.0-or-later"
repository = "https://github.com/IslamAlam/pypolsar"
homepage = "https://github.com/IslamAlam/pypolsar"
# Keywords description https://python-poetry.org/docs/pyproject/#keywords
keywords = ['pypolsar', 'gdal', 'numpy', 'xarray'] # Update me
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [ # Update me
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
[tool.poetry.scripts]
# Entry points for the package https://python-poetry.org/docs/pyproject/#scripts
"pypolsar" = "pypolsar.__main__:app"
[tool.poetry.dependencies]
python = "^3.7"
importlib_metadata = {version = "^1.6.0", python = "<3.8"}
typer = {extras = ["all"], version = "^0.2.1"}
rich = "^2.2.2"
pre-commit = "^2.5.1"
numba = "^0.51.2"
numpy = "^1.19.2"
scipy = "^1.5.2"
h5py = "^2.10.0"
cython = "^0.29.21"
matplotlib = "^3.3.2"
scikit-image = "^0.17.2"
readline = "^6.2.4"
mako = "^1.1.3"
pillow = "^7.2.0"
xarray = "^0.16.0"
seaborn = "^0.11.0"
[tool.poetry.dev-dependencies]
darglint = "^1.4.1"
isort = {extras = ["pyproject"], version = "^4.3.21"}
pyupgrade = "^2.6.1"
black = "^19.10b0"
mypy = "^0.780"
bandit = "^1.6.2"
safety = "^1.9.0"
pytest = "^5.4.3"
pylint = "^2.5.3"
pydocstyle = "^5.0.2"
coverage = "^5.3"
[tool.black]
# https://github.com/psf/black
line-length = 80
target-version = ["py37"]
[tool.isort]
# https://github.com/timothycrosley/isort/
known_typing = "typing,types,typing_extensions,mypy,mypy_extensions"
sections = "FUTURE,TYPING,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
include_trailing_comma = true
default_section = "FIRSTPARTY"
multi_line_output = 3
indent = 4
force_grid_wrap = 0
use_parentheses = true
line_length = 80