-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.36 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
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = [
'girder>=3',
'girder-worker[girder]>=0.6.0',
'girder-worker-utils',
'girder-jobs',
'girder-slurm',
# 'girder-overlays',
'histomicsui',
'girder-large-image-annotation',
'large-image[openslide,tiff,pil]'
]
setup(
author='Tianyi Miao',
author_email='tymiao1220@gmail.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
description='Girder v3 adaptation of SSR Task',
install_requires=requirements,
license='Apache Software License 2.0',
long_description=readme,
long_description_content_type='text/x-rst',
include_package_data=True,
keywords='girder-plugin, ssr_task_girder3',
name='girder-ssrtask',
packages=find_packages(exclude=['plugin_tests']),
url='https://github.com/abcsFrederick/SSR_task',
version='0.4.0',
zip_safe=False,
entry_points={
'girder.plugin': [
'ssrtask = girder_ssr_task:SSRTaskPlugin'
]
}
)