forked from 3liz/qgis_plugin_tools
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
69 lines (63 loc) · 2.12 KB
/
setup.cfg
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
[flake8]
# Black compatible values https://black.readthedocs.io/en/stable/compatible_configs.html#flake8
max-line-length = 88
per-file-ignores =
test/*:ANN001,ANN201
extend-ignore =
# E203 whitespace before ':'
E203,
# ANN101 Missing type annotation for self in method
ANN101
[isort]
# Black compatible values for isort https://black.readthedocs.io/en/stable/compatible_configs.html#isort
profile = black
multi_line_output = 3
[metadata]
name = qgis_plugin_tools
version = 0.5.0
author = 3Liz, Gispo Ltd.
author_email = info@gispo.fi
maintainer = Gispo Ltd.
maintainer_email = info@gispo.fi
description = A collection of helpful tools and widgets to aid QGIS plugin tool development
long_description = file: README.md
long_description_content_type = text/markdown
keywords = qgis,QGIS,PyQGIS
url = https://github.com/GispoCoding/qgis_plugin_tools
license = GNU GPL v2.0
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python
Programming Language :: Python :: 3
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
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: OS Independent
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
[options]
python_requires = >=3.5
packages =
qgis_plugin_tools
qgis_plugin_tools.infrastructure
qgis_plugin_tools.resources
qgis_plugin_tools.resources.ui
qgis_plugin_tools.testing
qgis_plugin_tools.tools
qgis_plugin_tools.widgets
package_dir =
qgis_plugin_tools = .
# due to .ui files actually needed on disk when using __file__ relative paths?
zip_safe = False
[options.package_data]
* =
py.typed
*.ui