-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
69 lines (61 loc) · 1.67 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
[metadata]
name = solidation
#version = # Extracted from tags by versioningit
description = Produce activities reports from GitHub
long_description = file:README.md
long_description_content_type = text/markdown
author = Center for Open Neuroscience
author_email = [email protected]
license = MIT
license_files = LICENSE
url = https://github.com/con/solidation
keywords =
###
classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: MIT License
###
Typing :: Typed
project_urls =
Source Code = https://github.com/con/solidation
Bug Tracker = https://github.com/con/solidation/issues
[options]
packages = find_namespace:
package_dir =
=src
include_package_data = True
python_requires = >= 3.10
install_requires =
click >= 8.0
click-loglevel ~= 0.2
pydantic ~= 2.0
PyGithub ~= 2.0
ruamel.yaml ~= 0.15
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
solidation = solidation.__main__:main
[mypy]
allow_incomplete_defs = False
allow_untyped_defs = False
ignore_missing_imports = False
# <https://github.com/python/mypy/issues/7773>:
no_implicit_optional = True
implicit_reexport = False
local_partial_types = True
pretty = True
show_error_codes = True
show_traceback = True
strict_equality = True
warn_redundant_casts = True
warn_return_any = True
warn_unreachable = True
plugins = pydantic.mypy
[pydantic-mypy]
init_forbid_extra = True