-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
58 lines (53 loc) · 1.16 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
[metadata]
name = niviz_rater
description = Web dashboard for rating QC images
long_description = file:README.md
keywords = neuroimaging, visualization, automation, web, svelte
classifiers =
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
project_urls =
GitHub = https://github.com/tigrlab/niviz_rater
Bug TRACKER = https://github.com/tigrlab/niviz_rater/issues
Source Code = https://github.com/tigrlab/niviz_rater
[options]
python_requires = >= 3.7
install_requires =
attrs
packaging
bottle
peewee
PyYAML
yamale
packages = find:
zip_safe = true
include_package_data = True
[options.extras_require]
# To use "pip install niviz_rater[name]"
doc =
sphinx >= 3
sphinx_rtd_theme >= 0.5.0
sphinx-multiversion
sphinx-autodoc-typehints
docs =
%(doc)s
lint =
flake8 >= 3.7.0
yapf >= 0.30.0
test =
pytest >= 6.2.4
all =
%(doc)s
%(lint)s
%(test)s
buildtest =
%(lint)s
%(test)s
[options.entry_points]
console_scripts =
niviz-rater = niviz_rater.app:main
[options.package_data]
* = data/*, client/public/*, client/public/build/*