-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
81 lines (77 loc) · 2.4 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
from pathlib import Path
from setuptools import find_packages, setup
__version__ = '0.7.0'
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='uvdat',
version=__version__,
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.10',
'Programming Language :: Python',
],
python_requires='>=3.10',
packages=find_packages(),
include_package_data=True,
install_requires=[
# Pinned August 2024
'celery==5.4.0',
'django==5.0.7',
'django-configurations[database,email]==2.5.1',
'django-extensions==3.2.3',
'django-filter==24.3',
'django-guardian==2.4.0',
'django-oauth-toolkit==2.4.0',
'djangorestframework==3.15.2',
'django-large-image==0.10.0',
'drf-yasg==1.21.7',
'matplotlib==3.9.2', # for raster colormaps
'osmnx==1.9.4',
'geopandas==0.14.4',
'networkx==3.3',
'pyshp==2.3.1',
'rasterio==1.3.10',
'urllib3==1.26.15',
'webcolors==24.6.0',
# Production-only
'django-composed-configuration[prod]==0.25.0',
'django-s3-file-field[boto3]==1.0.1',
'gunicorn==22.0.0',
],
extras_require={
'dev': [
'django-composed-configuration[dev]==0.25.0',
'django-debug-toolbar==4.4.6',
'django-s3-file-field[minio]==1.0.1',
'ipython==8.26.0',
'tox==4.16.0',
'pre-commit==4.0.1',
],
'test': [
'factory-boy==3.3.1',
'pytest==8.3.3',
'pytest-django==4.9.0',
'pytest-mock==3.14.0',
],
},
)