forked from ReproNim/neurodocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
115 lines (101 loc) · 2.6 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[metadata]
name = neurodocker
url = https://github.com/repronim/neurodocker
author = Neurodocker Developers
author_email = [email protected]
description = A generic generator of Dockerfiles and Singularity recipes
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License, 2.0
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
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
Topic :: Software Development
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
python_requires = >= 3.8
install_requires =
click
etelemetry >= 0.2.0
jinja2 >= 2.0
jsonschema >= 3.0
mypy-extensions
pyyaml >= 5.0
typing-extensions
[options.extras_require]
minify =
docker >= 4.4.1
dev =
%(minify)s
black >= 23.1.0
isort
codecov
flake8
mypy
pre-commit
pytest >= 6.0
pytest-cov >= 2.0.0
pytest-reportlog >= 0.1.2
pytest-xdist >= 2.2.0
docs =
sphinx <7
pydata-sphinx-theme >= 0.13
sphinxcontrib.apidoc >= 0.3
all =
%(minify)s
%(dev)s
%(docs)s
[options.entry_points]
console_scripts =
neurodocker = neurodocker.cli.cli:cli
[options.package_data]
neurodocker =
templates/*.yaml
reproenv/schemas/*.json
cli/minify/_trace.sh
[versioneer]
VCS = git
style = pep440
versionfile_source = neurodocker/_version.py
versionfile_build = neurodocker/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 88
extend-ignore = E203
exclude = neurodocker/_version.py
[mypy]
exclude = reproenv/tests
no_implicit_optional=False
[mypy-neurodocker._version]
ignore_errors = True
[mypy-neurodocker.reproenv.tests.*]
ignore_errors = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-docker]
ignore_missing_imports = True
[mypy-jsonschema]
ignore_missing_imports = True
[tool:pytest]
addopts = --cov=neurodocker --cov-config=setup.cfg --verbose --strict-markers
markers =
builds_docker: builds a docker image
builds_singularity: builds a singularity image
long: mark a test as taking a long time (minutes)
verylong: mark a test as taking a very long time (over 10 minutes)
[coverage:run]
omit =
*/tests/*
neurodocker/_version.py