-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.py
29 lines (26 loc) · 799 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
24
25
26
27
28
29
import os.path
from setuptools import setup
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, "README.md")) as fid:
README = fid.read()
setup(
name="image_to_numpy",
version="1.0.0",
description="Load an image into a numpy array with proper Exif orientation handling",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/ageitgey/image_to_numpy",
author="Adam Geitgey",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
packages=["image_to_numpy"],
install_requires=[
"pillow",
"numpy"
],
)