-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
98 lines (88 loc) · 2.56 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[metadata]
name = lookups
description = DCI lookups in Python (inspired by Netbeans Platform Lookups API)
long_description = file: README.md, AUTHORS.md, CHANGELOG.md
long_description_content_type = text/markdown
author = Axel Voitier
author_email = [email protected]
license = MPLv2
license_file = LICENSE
url = https://github.com/AxelVoitier/lookups
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Object Brokering
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Programming Language :: Python :: 3 :: Only
# Py3.7 EOL: 2023/06/27
Programming Language :: Python :: 3.7
# Py3.8 EOL: 2024/10/14
Programming Language :: Python :: 3.8
# Py 3.9 EOL: 2025/10/05
Programming Language :: Python :: 3.9
# Py 3.10 EOL: 2026/10/04
Programming Language :: Python :: 3.10
# Py 3.11 EOL: 2027/10/03 ?
Programming Language :: Python :: 3.11
Typing :: Typed
keywords = lookup, lookups, dci
[options]
packages = find:
include_package_data = True
python_requires = ~=3.7
setup_requires =
setuptools_scm
install_requires =
observable
typing_extensions
importlib-metadata; python_version < "3.8"
zip_safe = false # Because mypy cannot analyse a zip
[options.packages.find]
exclude =
tests
[options.package_data]
lookups =
py.typed
[options.extras_require]
dev =
flake8
pytest
pytest-cov
pytest-html
mypy
check-manifest
[options.entry_points]
lookups.test_entry_point =
parent = tests.tools:TestParentObject
child = tests.tools:TestChildObject
other = tests.tools:TestOtherObject
lookups.test_default_lookup =
a_lookup = tests.test_lookup_default:DefaultLookup
lookups.test_default_lookup_lookup_provider =
a_lookup = tests.test_lookup_default:DefaultLookupLookupProvider
lookups.test_default_lookup_provider =
a_lookup = tests.test_lookup_default:DefaulLookupProvider
lookups.test_default_no_lookup =
parent = tests.tools:TestParentObject
child = tests.tools:TestChildObject
other = tests.tools:TestOtherObject
lookups.test_default_empty_entry_point_group =
[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