-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
53 lines (49 loc) · 1.56 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
48
49
50
51
52
53
import versioneer
from setuptools import setup, find_packages
PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10"]
setup(
name="xnat4tests",
version=versioneer.get_version(),
author="Thomas G. Close",
author_email="[email protected]",
packages=find_packages(),
url="https://github.com/australian-imaging-service/xnat4tests",
license="CC0",
description=("Creates basic XNAT instance for API tests"),
long_description=open("README.rst").read(),
install_requires=[
"docker>=5.0.2",
"xnat",
"click>=7.1.2",
"requests>=2.10.0",
"medimages4tests>=0.3",
"PyYAML>=6.0",
],
extras_require={
"test": [
"pytest>=5.4.3",
"pytest-cov>=2.12.1",
]
},
entry_points={
"console_scripts": [
"xnat4tests=xnat4tests.cli:cli",
"x4t=xnat4tests.cli:cli",
]
},
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 PYTHON_VERSIONS]
),
keywords="repository analysis neuroimaging workflows pipelines",
)