-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
69 lines (62 loc) · 1.37 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
[project]
name = 'SPCartopy'
description = 'Add SPC products to cartopy maps.'
authors = [
{name = 'Nathan Wendt', email = '[email protected]'},
]
readme = 'README.md'
license = {file = 'LICENSE'}
dynamic = ['version']
dependencies = [
'cartopy',
'fiona',
'matplotlib',
'shapely >= 1.8'
]
[project.optional-dependencies]
lint = [
'flake8',
'pycodestyle',
'pyflakes',
'flake8-bugbear',
'flake8-builtins',
'flake8-comprehensions',
'flake8-continuation',
'flake8-copyright',
'flake8-isort',
'isort',
'flake8-mutable',
'flake8-pie',
'flake8-print',
'flake8-quotes',
'flake8-requirements',
'flake8-simplify',
'flake8-docstrings',
'pep8-naming',
'pydocstyle',
]
test = [
'pytest',
'pytest-mpl'
]
[build-system]
requires = ['setuptools']
build-backend = "setuptools.build_meta"
[project.urls]
homepage = 'https://github.com/nawendt/SPCartopy'
repository = 'https://github.com/nawendt/SPCartopy'
[tool.isort]
line_length = 95
known_first_party = ['spcartopy']
force_single_line = false
reverse_relative = true
use_parentheses = true
force_sort_within_sections = true
order_by_type = false
sort_relative_in_force_sorted_sections = true
combine_as_imports = true
combine_star = true
[tool.setuptools.dynamic]
version = {attr = 'spcartopy.__version__'}
[tool.setuptools.packages.find]
where = ['src']