-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
118 lines (105 loc) · 2.69 KB
/
pyproject.toml
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
116
117
118
[build-system]
requires = ["setuptools>=42", "cffi>=1.0.0", 'versioneer[toml]']
build-backend = 'setuptools.build_meta'
[project]
name = 'capcalc'
description = 'capcalc is a suite of python programs used to perform coactivation pattern analysis on time series data.'
keywords = ["fMRI", "temporal dynamics"]
license = {text = "Apache Software License"}
authors = [
{ name='Blaise Frederick', email='[email protected]' },
]
readme = 'README.rst'
classifiers = [
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Image Recognition',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
requires-python = '>=3.8'
dependencies = [
'numpy',
'scipy',
'scikit-learn',
'matplotlib',
'statsmodels',
'nibabel',
'versioneer',
]
dynamic = ['version']
[project.urls]
'Homepage' = 'https://github.com/bbfrederick/capcalc'
'Bug Tracker' = 'https://github.com/bbfrederick/capcalc/issues'
'Repository' = 'https://github.com/bbfrederick/capcalc.git'
'Documentation' = 'https://capcalc.readthedocs.io'
'Changelog' = 'https://github.com/bbfrederick/capcalc/blob/main/CHANGELOG.md'
[project.optional-dependencies]
test = [
'codecov',
'coverage',
'coveralls',
'flake8-black',
'pytest',
'pytest-cov',
]
doc = [
'sphinx',
'sphinx_rtd_theme',
'sphinx-argparse',
'sphinx-gallery',
'm2r',
'numpydoc',
'recommonmark',
'mistune',
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ['capcalc']
[tool.setuptools.package-data]
capcalc = ['capcalc/*.py', 'capcalc/scripts/*']
[tool.setuptools.dynamic]
version = {attr = "capcalc.__version__"}
[tool.setuptools.exclude-package-data]
capcalc = ['.eggs', '.git', '.github', '.pytest_cache']
# Aliases
docs = ['capcalc[doc]']
tests = ['capcalc[test]']
all = ['capcalc[docs,tests]']
[tool.black]
line-length = 99
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.github
| \.hg
| \.pytest_cache
| _build
| build
| dist
)/
| get_version.py
| versioneer.py
| capcalc/_version.py
)
'''
[tool.isort]
profile = 'black'
multi_line_output = 3
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "capcalc/_version.py"
versionfile_build = "capcalc/_version.py"
tag_prefix = ""
parentdir_prefix = "capcalc-"