-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 778 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
with open("README.rst", 'r') as f:
long_description = f.read()
setup(name='image_processing',
version='1.11.0',
description='Digital Bodleian image processing library',
url='http://github.com/bodleian/image-processing',
license="MIT",
long_description=long_description,
author='Mel Mason',
author_email='mel.mason@bodleian.ox.ac.uk',
packages=['image_processing'],
install_requires=['Pillow', 'jpylyzer'],
entry_points={
'console_scripts': ['convert_tiff_to_jp2=image_processing.entry_points:generate_derivatives_from_tiff',
'convert_icc=image_processing.entry_points:convert_icc_profile'
]
}
)