forked from Australian-Imaging-Service/xnat4tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.6 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (42 loc) · 1.6 KB
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
import versioneer
from setuptools import setup, find_packages
setup(
name='xnat4tests',
version=versioneer.get_version(),
author='Thomas G. Close',
author_email='tom.g.close@gmail.com',
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>=0.3.17',
'click>=8.1.3',
'requests>=2.10.0',
'PyYAML>=6.0'],
extras_require={
'test': [
'pytest>=5.4.3']},
entry_points={
"console_scripts": [
"xnat4tests_launch=xnat4tests.launch:launch_cli",
"xnat4tests_stop=xnat4tests.launch:stop_cli",
"xnat4tests_launch_registry=xnat4tests.launch:launch_registry",
"xnat4tests_stop_registry=xnat4tests.launch:stop_registry",
]
},
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.5', '3.6', '3.7', '3.8', '3.9')]),
keywords='repository analysis neuroimaging workflows pipelines')