-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
executable file
·77 lines (69 loc) · 1.78 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
[metadata]
name = memfs
version = attr: memfs.__version__
description = Generate grpc API Service based on function
long_description = file: README.md
long_description_content_type = text/markdown
author = Tom Sapletta
author_email = [email protected]
url = https://github.com/pyfunc/memfs
license = Apache-2.0
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Software Development :: Libraries :: Python Modules
[options]
package_dir =
= src
packages = find:
python_requires = >=3.11
install_requires =
grpcio==1.59.3
grpcio-tools==1.59.3
protobuf==4.25.1
jinja2==3.1.2
weasyprint==60.1
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
memfs = memfs.cli_with_shell:main
[mypy]
python_version = 3.7
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_no_return = True
warn_unreachable = True
[tool:pytest]
testpaths = tests
python_files = test_*.py
addopts = --verbose --cov=memfs --cov-report=term-missing
[coverage:run]
source = memfs
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if __name__ == .__main__.:
[isort]
profile = black
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88