-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (45 loc) · 1.53 KB
/
setup.py
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
import versioneer
from setuptools import setup, find_namespace_packages
setup(
name="medimages4tests",
version=versioneer.get_version(),
author="Thomas G. Close",
author_email="[email protected]",
packages=find_namespace_packages(
include=["medimages4tests*"],
),
url="https://github.com/australian-imaging-service/medimages4tests",
license="CC0",
description=(
"Generates dummy medical image data with realistic headers "
"to be used in image handling tests"
),
long_description=open("README.rst").read(),
install_requires=[
"pydicom>=2.4.4",
"nibabel>=4.0.1",
"openneuro-py>=2022.2.0",
"attrs>=21.4.0",
],
extras_require={
"test": ["pytest>=5.4.3", "pytest-env>=0.6.2", "pytest-cov>=2.12.1"]
},
include_package_data=True,
cmdclass=versioneer.get_cmdclass(),
classifiers=(
[
"Development Status :: 4 - Beta",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
+ [
"Programming Language :: Python :: " + str(v)
for v in ("3.8", "3.9", "3.10", "3.11")
]
),
keywords="repository analysis medical-imaging neuroimaging workflows pipelines",
)