-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
49 lines (44 loc) · 971 Bytes
/
setup.cfg
File metadata and controls
49 lines (44 loc) · 971 Bytes
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
[metadata]
name = pycentiloid
description = A Python package for Centiloid calculation and PET image processing
long_description = file: README.md
long_description_content_type = text/markdown
author = Haichao Liu
author_email = example@example.com
license = MIT
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Scientific/Engineering :: Medical Science Apps.
[options]
packages = find:
python_requires = >=3.7
install_requires =
numpy>=1.19.0
scipy>=1.6.0
antspyx>=0.3.0
nibabel>=3.2.0
pandas>=1.3.0
matplotlib>=3.4.0
jinja2>=3.0.0
pydicom>=2.2.0
[options.packages.find]
exclude =
tests
docs
[flake8]
max-line-length = 100
extend-ignore = E203
exclude =
.git,
__pycache__,
build,
dist
[isort]
profile = black
line_length = 100
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_functions = test_*