-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
97 lines (86 loc) · 2.04 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
[bumpversion]
current_version = 1.2.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize =
{major}.{minor}.{patch}
[metadata]
name = shamo
version = 1.2.1
url = https://github.com/CyclotronResearchCentre/shamo
author = Martin Grignard
author-email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering :: Physics
Topic :: Scientific/Engineering :: Visualization
Topic :: Scientific/Engineering :: Medical Science Apps.
license = GPLv3
license_file = LICENSE.md
description = A tool for electromagnetic modelling of the head and sensitivity analysis.
long-description = file: README.md
long_description_content_type = text/markdown
keywords =
eeg
tdcs
meg
tms
electromagnetics
modelling
platform = any
project_urls =
Bug Tracker = https://github.com/CyclotronResearchCentre/shamo/issues
Changelog = https://github.com/CyclotronResearchCentre/shamo/blob/master/CHANGELOG.md
[options]
zip_safe = False
install_requires =
chaospy
click
gmsh
h5py
jinja2
meshio
nibabel
nilearn
numpy
pygalmesh
pyyaml
SALib
scikit-learn
scipy
wurlitzer
python_requires = >= 3.7
package_dir =
=src
packages = find:
include_package_data = True
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
shamo-report = shamo.cli.report:main
[bdist_wheel]
universal = True
[sdist]
formats = zip, gztar
[tool:pytest]
testpaths =
tests
addopts = -v
filterwarnings =
ignore::RuntimeWarning::521
[bumpversion:file:setup.cfg]
[bumpversion:file:docs/src/conf.py]
[bumpversion:file:src/shamo/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:CHANGELOG.md]
search = [Unreleased]
replace = [{new_version}]