This repository was archived by the owner on Mar 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
87 lines (84 loc) · 2.65 KB
/
Copy pathsetup.py
File metadata and controls
87 lines (84 loc) · 2.65 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
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
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='xray_genius',
version='0.1.0',
description='',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache 2.0',
author='Kitware, Inc.',
author_email='kitware@kitware.com',
keywords='',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django :: 5.1',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python',
],
python_requires='>=3.12',
packages=find_packages(),
include_package_data=True,
install_requires=[
'celery[redis]>=5.5', # 5.5 fixes some critical connectivity issues with redis
'channels[daphne]',
'channels-redis',
'django>=5.1,<5.2',
'django-allauth[socialaccount]',
'django-allauth-ui',
'django-axes[ipware]',
'django-celery-results',
'django-click',
'django-configurations[database,email]',
'django-extensions',
'django-filter',
'django-hijack',
'django-login-required-middleware',
'django-ninja',
'django-oauth-toolkit',
'django-simple-captcha',
'django-vite',
'django-widget-tweaks', # required by django-allauth-ui
'humanize',
'markdown',
'numpy~=1.26.4', # deepdrr doesn't work with numpy >= 2, but it doesn't specify this
'psycopg[pool]',
'pillow',
'pydantic',
'scipy',
'slippers', # required by django-allauth-ui
# Production-only
'django-composed-configuration[prod]>=0.25',
'django-s3-file-field[s3]>=1.0.0',
],
extras_require={
'worker': [
'deepdrr==1.1.3',
'pypng',
],
'dev': [
'django-autotyping',
'django-browser-reload',
'django-composed-configuration[dev]>=0.25',
'django-debug-toolbar',
'django-s3-file-field[minio]>=1.0.0',
'django-stubs',
'girder-client',
'ipython',
'tox',
],
},
)