forked from girder/slicer_cli_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
80 lines (73 loc) · 2.55 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import os
from setuptools import find_packages, setup
def prerelease_local_scheme(version):
"""Return local scheme version unless building on master in CircleCI.
This function returns the local scheme version number
(e.g. 0.0.0.dev<N>+g<HASH>) unless building on CircleCI for a
pre-release in which case it ignores the hash and produces a
PEP440 compliant pre-release version number (e.g. 0.0.0.dev<N>).
"""
from setuptools_scm.version import get_local_node_and_date
if os.getenv('CIRCLE_BRANCH') == 'master':
return ''
else:
return get_local_node_and_date(version)
with open('README.rst') as f:
readme = f.read()
# perform the install
setup(
name='girder-slicer-cli-web',
use_scm_version={'local_scheme': prerelease_local_scheme},
setup_requires=['setuptools-scm'],
description='A girder plugin for exposing slicer CLIs over the web',
long_description=readme,
long_description_content_type='text/x-rst',
url='https://github.com/girder/slicer_cli_web',
keywords='girder-plugin, slicer_cli_web',
author='Kitware, Inc.',
author_email='[email protected]',
license='Apache Software License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
include_package_data=True,
package_dir={'girder_slicer_cli_web': 'slicer_cli_web'},
packages=find_packages(exclude=['tests', 'test.*']),
zip_safe=False,
install_requires=[
'ctk_cli',
'jinja2',
'jsonschema>=2.5.1',
'pyyaml>=5.1.2',
],
extras_require={
'girder': [
'docker>=2.6.0',
'girder>=3.0.4',
'girder-jobs>=3.0.3',
'girder-worker[girder]>=0.6.0',
],
'worker': [
'docker>=2.6.0',
'girder-worker[worker]>=0.6.0',
]
},
entry_points={
'girder.plugin': [
'slicer_cli_web = slicer_cli_web.girder_plugin:SlicerCLIWebPlugin'
],
'girder_worker_plugins': [
'slicer_cli_web = slicer_cli_web.girder_worker_plugin:SlicerCLIWebWorkerPlugin'
]
},
python_requires='>=3.6',
)