-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
105 lines (93 loc) · 2.02 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
# This file is used to configure your project.
# Read more about the various options under:
# http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = cpac
description = C-PAC Python Package
author = C-PAC developers
author-email = [email protected]
license = mit
url = https://github.com/FCP-INDI/cpac-python-package
long-description = file: README.rst
long-description-content-type: text/x-rst
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add here all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Bio-Informatics
version = 0.2.5
[options]
zip_safe = False
packages = find:
include_package_data = True
package_dir =
=src
use_scm_version = True
setup_requires =
setuptools_scm
pyyaml
install_requires =
docker
docker-pycreds
nipype
pandas >= 0.23.4
spython >= 0.0.81
pyyaml
tabulate >= 0.8.6
tornado
websocket-client
python_requires = >=3.6
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
testing =
alabaster
imagesize
pytest
pytest-cov
pytest-runne
sphinx
[options.entry_points]
console_scripts =
cpac = cpac.__main__:run
[test]
addopts = --verbose -s
extras = True
[tool:pytest]
addopts = -s
# --cov cpac --cov-report term-missing -s
# -s
# --verbose
norecursedirs =
dist
build
.tox
testpaths = tests
[aliases]
build = bdist_wheel
release = build upload
test = pytest
[bdist_wheel]
universal = 1
[build_sphinx]
source_dir = docs
build_dir = docs/_build
[devpi:upload]
no-vcs = 1
formats = bdist_wheel
[flake8]
exclude =
.tox
build
dist
.eggs
docs/conf.py