-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.cfg
More file actions
90 lines (80 loc) · 2.18 KB
/
setup.cfg
File metadata and controls
90 lines (80 loc) · 2.18 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
85
86
87
88
89
90
[metadata]
name = tinuous
description = Download build logs from GitHub Actions, Travis, and Appveyor
long_description = file:README.rst
long_description_content_type = text/x-rst
author = Center for Open Neuroscience
author_email = debian@onerussian.com
maintainer = John T. Wodder II
maintainer_email = tinuous@varonathe.org
license = MIT
license_files = LICENSE
url = https://github.com/con/tinuous
keywords =
Appveyor
GitHub Actions
Travis CI
continuous integration
classifiers =
Development Status :: 4 - Beta
#Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Topic :: System :: Filesystems
project_urls =
Source Code = https://github.com/con/tinuous
Bug Tracker = https://github.com/con/tinuous/issues
[options]
packages = find:
package_dir =
=src
python_requires = >=3.9
install_requires =
click >= 7.0
click-loglevel ~= 0.2
ghtoken ~= 0.1
in_place ~= 1.0
pydantic ~= 2.0
python-dateutil ~= 2.7
python-dotenv >= 0.11, < 2.0
PyYAML >= 5.0
requests ~= 2.20
[options.extras_require]
all =
%(datalad)s
datalad =
datalad ~= 0.14
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
tinuous = tinuous.__main__:main
[mypy]
ignore_missing_imports = False
disallow_untyped_defs = True
disallow_incomplete_defs = True
no_implicit_optional = True
warn_redundant_casts = True
warn_return_any = True
warn_unreachable = True
local_partial_types = True
no_implicit_reexport = True
strict_equality = True
show_error_codes = True
show_traceback = True
pretty = True
plugins = pydantic.mypy
[mypy-datalad.*]
ignore_missing_imports = True
[pydantic-mypy]
init_forbid_extra = True
warn_required_dynamic_aliases = True