-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
81 lines (71 loc) · 1.71 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
70
71
72
73
74
75
76
77
78
79
80
81
[metadata]
name = openide
description = Python implementation of openide/Netbeans Platform concepts
long_description = file: README.md, AUTHORS.md, CHANGELOG.md
long_description_content_type = text/markdown
author = Axel Voitier
author_email = axel.voitier@gmail.com
license = MPLv2
license_file = LICENSE
url = https://github.com/AxelVoitier/openide
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Programming Language :: Python :: 3
Topic :: Desktop Environment
Topic :: Software Development :: User Interfaces
Topic :: Text Editors :: Integrated Development Environments (IDE)
[options]
packages = find:
include_package_data = True
python_requires = ~=3.9
setup_requires =
setuptools_scm
install_requires =
lookups
qtpy
PySide2
PyYaml
observable
zip_safe = false # Because mypy cannot analyse a zip
[options.packages.find]
exclude =
tests
[options.package_data]
* = *.ui, *.xml, *.json, *.yaml
openide =
py.typed
[options.extras_require]
dev =
flake8
autopep8
pytest
pytest-cov
pytest-html
mypy
typing_extensions
check-manifest
[options.entry_points]
egg_info.writers =
openide.yaml = openide:setup
lookup.default =
MainLookup = openide.lookups.main_lookup:MainLookup
[flake8]
max-line-length = 100
show-source = true
max-complexity = 15
statistics = true
[mypy]
show_column_numbers = true
show_error_context = false
warn_no_return = true
disallow_untyped_defs = true
check_untyped_defs = false
ignore_missing_imports = false
[mypy-observable]
ignore_missing_imports = true
[mypy-tests]
ignore_errors = true
[mypy-setup]
ignore_errors = true