-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 1020 Bytes
/
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
from setuptools import setup
setup(
name="quickcrop",
version="0.1.1",
description="A UI-based method to quickly crop an image to a square using matplotlib by " +
"specifying four corners within which to crop. Meant to be easily integrated " +
"into image processing scripts.",
url="https://github.com/realitychemist/quickcrop",
author="Charles Evans",
author_email="[email protected]",
license="MPL 2.0",
packages=["quickcrop"],
install_requires=["numpy",
"scipy",
"matplotlib"],
classifiers=["Development Status :: 2 - Pre-Alpha",
"Framework :: Matplotlib",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Image Processing"])