This repository was archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.53 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.53 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
import os
from setuptools import find_packages, setup
description = 'OpenVisus tilesource for large_image.'
long_description = description + '\n\nSee the large-image package for more details.'
project_version="1.0.9"
setup(
name='large-image-source-openvisus',
version = project_version,
description=description,
long_description=long_description,
license='Apache Software License 2.0',
author='OpenVisus',
author_email='scrgiorgio@gmail.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
install_requires=[
'large-image',
'OpenVisusNoGui',
],
extras_require={
'girder': f'girder-large-image',
'all': ['large-image-converter',],
},
keywords='large_image, tile source',
packages=find_packages(exclude=['test', 'test.*']),
url='https://github.com/girder/large_image',
python_requires='>=3.9',
entry_points={
'large_image.source': [
'openvisus = large_image_source_openvisus:OpenVisusTileSource',
],
'girder_large_image.source': [
'openvisus = large_image_source_openvisus.girder_source:OpenVisusGirderTileSource',
],
},
)