|
3 | 3 |
|
4 | 4 |
|
5 | 5 | setup(
|
6 |
| - name='medimages4tests', |
| 6 | + name="medimages4tests", |
7 | 7 | version=versioneer.get_version(),
|
8 |
| - author='Thomas G. Close', |
9 |
| - author_email='tom.g.close@gmail.com', |
| 8 | + author="Thomas G. Close", |
| 9 | + author_email="tom.g.close@gmail.com", |
10 | 10 | packages=find_namespace_packages(),
|
11 |
| - url='https://github.com/australian-imaging-service/medimages4tests', |
12 |
| - license='CC0', |
13 |
| - description=('Generates dummy medical image data with realistic headers ' |
14 |
| - 'to be used in image handling tests'), |
15 |
| - long_description=open('README.rst').read(), |
| 11 | + url="https://github.com/australian-imaging-service/medimages4tests", |
| 12 | + license="CC0", |
| 13 | + description=( |
| 14 | + "Generates dummy medical image data with realistic headers " |
| 15 | + "to be used in image handling tests" |
| 16 | + ), |
| 17 | + long_description=open("README.rst").read(), |
16 | 18 | install_requires=[
|
17 |
| - 'pydicom>=1.0.2', |
| 19 | + "pydicom>=1.0.2", |
18 | 20 | "nibabel>=4.0.1",
|
19 | 21 | "openneuro-py>=2022.2.0",
|
20 |
| - "attrs>=21.4.0"], |
| 22 | + "attrs>=21.4.0", |
| 23 | + ], |
21 | 24 | extras_require={
|
22 |
| - 'test': [ |
23 |
| - 'pytest>=5.4.3', |
24 |
| - 'pytest-env>=0.6.2', |
25 |
| - 'pytest-cov>=2.12.1']}, |
| 25 | + "test": ["pytest>=5.4.3", "pytest-env>=0.6.2", "pytest-cov>=2.12.1"] |
| 26 | + }, |
26 | 27 | include_package_data=True,
|
27 | 28 | cmdclass=versioneer.get_cmdclass(),
|
28 | 29 | classifiers=(
|
29 |
| - ["Development Status :: 4 - Beta", |
30 |
| - "Intended Audience :: Healthcare Industry", |
31 |
| - "Intended Audience :: Science/Research", |
32 |
| - "License :: OSI Approved :: Apache Software License", |
33 |
| - "Natural Language :: English", |
34 |
| - "Topic :: Scientific/Engineering :: Bio-Informatics", |
35 |
| - "Topic :: Scientific/Engineering :: Medical Science Apps."] |
36 |
| - + ["Programming Language :: Python :: " + str(v) |
37 |
| - for v in ('3.7', '3.8', '3.9', '3.10')]), |
38 |
| - keywords='repository analysis medical-imaging neuroimaging workflows pipelines') |
| 30 | + [ |
| 31 | + "Development Status :: 4 - Beta", |
| 32 | + "Intended Audience :: Healthcare Industry", |
| 33 | + "Intended Audience :: Science/Research", |
| 34 | + "License :: OSI Approved :: Apache Software License", |
| 35 | + "Natural Language :: English", |
| 36 | + "Topic :: Scientific/Engineering :: Bio-Informatics", |
| 37 | + "Topic :: Scientific/Engineering :: Medical Science Apps.", |
| 38 | + ] |
| 39 | + + [ |
| 40 | + "Programming Language :: Python :: " + str(v) |
| 41 | + for v in ("3.8", "3.9", "3.10", "3.11") |
| 42 | + ] |
| 43 | + ), |
| 44 | + keywords="repository analysis medical-imaging neuroimaging workflows pipelines", |
| 45 | +) |
0 commit comments