-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
84 lines (78 loc) · 2.15 KB
/
Copy pathsetup.cfg
File metadata and controls
84 lines (78 loc) · 2.15 KB
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
[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-3-Clause
license_files =
LICENSE
long_description = file: README.rst
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
Programming Language :: Python :: 3 :: Only
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
[options]
packages = find_namespace:
setup_requires =
packaging
install_requires = file: setup-requirements.txt
zip_safe = False
include_package_data = True
python_requires = >=3.8
[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