generated from datalad/datalad-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
64 lines (57 loc) · 1.71 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
[metadata]
url = https://github.com/datalad/datalad-redcap
author = The DataLad Team and Contributors
author_email = [email protected]
description = DataLad extension for working with REDCap within DataLad datasets
long_description = file:README.md
long_description_content_type = text/markdown; charset=UTF-8
license = MIT
classifiers =
Programming Language :: Python
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
project_urls =
Documentation = https://docs.datalad.org/projects/redcap/
[options]
python_requires = >= 3.8
install_requires =
datalad >= 0.18.2
datalad-next >= 1.0.0b2
pycap >= 2.3.0
prettytable >= 3.6
packages = find_namespace:
include_package_data = True
[options.packages.find]
include = datalad_redcap*
[options.extras_require]
devel =
pytest
pytest-cov
coverage
sphinx
sphinx_rtd_theme
[options.entry_points]
# 'datalad.extensions' is THE entrypoint inspected by the datalad API builders
datalad.extensions =
# the label in front of '=' is the command suite label
# the entrypoint can point to any symbol of any name, as long it is
# valid datalad interface specification (see demo in this extensions)
redcap = datalad_redcap:command_suite
[versioneer]
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
VCS = git
style = pep440
versionfile_source = datalad_redcap/_version.py
versionfile_build = datalad_redcap/_version.py
tag_prefix =
parentdir_prefix =
[coverage:report]
show_missing = True
omit =
# versioneer code
datalad_redcap/_version.py
[flake8]
max-line-length = 88
extend-ignore = E203