-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
73 lines (67 loc) · 2.1 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
[metadata]
name = datalad-installer
version = attr:datalad_installer.__version__
description = Installation script for Datalad and related components
long_description = file:README.rst
long_description_content_type = text/x-rst
author = The DataLad Team and Contributors
author_email = [email protected]
maintainer = John Thorvald Wodder II
maintainer_email = [email protected]
license = MIT
license_files = LICENSE
url = https://github.com/datalad/datalad-installer
keywords =
apt
conda
datalad
git-annex
installer
miniconda
neurodebian
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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: MIT License
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Intended Audience :: System Administrators
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: System :: Installation/Setup
Topic :: System :: Systems Administration
project_urls =
Source Code = https://github.com/datalad/datalad-installer
Bug Tracker = https://github.com/datalad/datalad-installer/issues
[options]
py_modules = datalad_installer
package_dir =
=src
include_package_data = True
python_requires = >= 3.9
[options.entry_points]
console_scripts =
datalad-installer = datalad_installer: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