-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
88 lines (85 loc) · 2.47 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
81
82
83
84
85
86
87
88
from pathlib import Path
from setuptools import find_packages, setup
readme_file = Path(__file__).parent / 'README.md'
if readme_file.exists():
with readme_file.open() as f:
long_description = f.read()
else:
# When this is first installed in development Docker, README.md is not available
long_description = ''
setup(
name='miqa',
version='0.1.0',
description='',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache 2.0',
author='Kitware, Inc.',
author_email='[email protected]',
keywords='',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django :: 3.0',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python',
],
python_requires='>=3.8',
packages=find_packages(),
include_package_data=True,
install_requires=[
'celery',
'dateparser',
'django>=3.2,<4.0',
'django-allauth>=0.59.0',
'django-auth-style[allauth]',
'django-configurations[database,email]',
'django-extensions',
'django-filter',
'django-oauth-toolkit',
'djangorestframework==3.13.1', # https://github.com/axnsan12/drf-yasg/issues/810
'django-click',
'django-guardian',
'drf-yasg',
'pandas',
'uri',
# Production-only
'django-composed-configuration[prod]',
'django-s3-file-field[boto3]',
'gunicorn',
'schema',
],
extras_require={
'dev': [
'django-composed-configuration[dev]',
'django-debug-toolbar',
'django-s3-file-field[minio]',
'ipython',
'tox',
'django-click',
'factory_boy',
'girder-pytest-pyppeteer==0.0.9',
'pytest-asyncio',
'types-dateparser',
],
'learning': [
'itk>=5.3rc4',
'monai',
'scikit-learn',
'torch',
'torchio',
'wandb',
],
'zarr': [
'itk-io',
'itk-filtering',
'spatial_image_ngff',
'spatial_image_multiscale',
],
},
)