-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
102 lines (93 loc) · 2.62 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
99
100
101
102
[metadata]
name = instruct
version = attr: generate_version.write_about_and_emit_version
author = Autumn Jolitz
description = Compact/flexible/fast/strictly-typed class system- similar to Pydantic but focused on ``__slot__``ed objects and ability to support multiple inheritance and type subtraction
project_urls =
Homepage = https://github.com/autumnjolitz/instruct
Source = https://github.com/autumnjolitz/instruct
Changelog = https://github.com/autumnjolitz/instruct/blob/master/CHANGES.rst
license = BSD
license_files =
LICENSE
long_description = file: README.rst, file: CHANGES.rst, file: LICENSE
long_description_content_type = text/x-rst
keywords =
instruct
typing
mixin
multiple-_inheritance
multiple inheritance
type hints
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Operating System :: Unix
Operating System :: POSIX :: Linux
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: BSD License
[options]
packages = find_namespace:
install_requires = file: setup-requirements.txt
zip_safe = False
include_package_data = True
[options.packages.find]
include =
instruct
instruct.*
exclude =
contrib
docs
tests*
[options.extras_require]
test = file: test-requirements.txt
devel = file: dev-requirements.txt
[flake8]
ignore = E402,E731,W503,W504,E252
exclude = .git,__pycache__,build,dist,.eggs,.github,.local,python
[bdist_wheel]
universal = 0
[tool:pytest]
testpaths =
tests
instruct
log_cli_level = INFO
log_auto_indent = true
# filter_loggers=
addopts =
--tb=short
--showlocals
--doctest-modules
--doctest-continue-on-failure
# --durations=3
--color auto
--code-highlight=yes
# --dist loadscope
mock_traceback_monkeypatch = true
filterwarnings =
ignore::ResourceWarning
ignore::DeprecationWarning
# [mypy]
# plugins = support/mypy/plugin.py
# [pytype]
# inputs=
# instruct/
# exclude =
# instruct/typing.py
# **/*_test.py
# **/test_*.py
# python_version = 3.7
# custom_overlays =
# instruct:support/pytype/overlay.py
# # Experimental: solve unknown types to label with structural types.
# protocols = True