-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 871 Bytes
/
setup.py
File metadata and controls
36 lines (34 loc) · 871 Bytes
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
"""
Setup script for the image processor package.
"""
from setuptools import setup, find_packages
setup(
name="image-processor",
version="0.1.0",
packages=find_packages(),
install_requires=[
"Pillow>=9.0.0",
"matplotlib>=3.5.0",
"memory_profiler>=0.60.0",
"psutil>=5.9.0",
"numpy>=1.20.0",
],
entry_points={
"console_scripts": [
"image-processor=image_processor.cli:main",
],
},
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=3.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
],
},
author="AWS",
author_email="example@example.com",
description="A Python package for applying various image transformations",
keywords="image, processing, transformations",
python_requires=">=3.8",
)