-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.cfg
89 lines (81 loc) · 1.75 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
[metadata]
name = abagen
url = https://github.com/rmarkello/abagen
download_url = https://github.com/rmarkello/abagen
author = abagen developers
maintainer = Ross Markello
maintainer_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering
license = BSD-3
description = A toolbox for working with the Allen Brain Atlas genetic data
long_description = file:README.rst
long_description_content_type = text/x-rst; charset=UTF-8
platforms = OS Independent
provides =
abagen
[options]
python_requires = >=3.6
install_requires =
nibabel
numpy >=1.14
pandas >=1.5.0
scipy
zip_safe = False
packages = find:
include_package_data = True
[options.extras_require]
doc =
sphinx >=2.0, <7.0.0
sphinx-argparse
sphinx_rtd_theme
io =
fastparquet
python-snappy
style =
flake8
test =
coverage
pytest >= 3.6
pytest-cov
all =
%(doc)s
%(io)s
%(test)s
[options.package_data]
abagen =
abagen/data/*
abagen/tests/data/*
[options.entry_points]
console_scripts =
abagen=abagen.cli.run:main
[coverage:run]
omit =
*/abagen/_version.py
*/abagen/datasets/utils.py
[flake8]
doctests = True
exclude =
*build/
*sphinx*
*/__init__.py
ignore = W503, E402
max-line-length = 119
[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE
xfail_strict = true
addopts = -rx
[versioneer]
VCS = git
style = pep440
versionfile_source = abagen/_version.py
versionfile_build = abagen/_version.py
tag_prefix =
parentdir_prefix =