-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 834 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
from setuptools import setup,find_packages
from ImageMagic import _version
with open('README_EN.md','r',encoding='utf-8') as f:
long_description = f.read()
setup(
name='ImageMagic',
version=_version.__version__,
packages=find_packages(exclude='test'),
url='https://github.com/asxez/ImageMagic',
license='GNU GPL 3.0',
author='asxe',
author_email='[email protected]',
description='图像处理库(包括但不限于图像)【Image processing libraries (including but not limited to images)】',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='Python library, image process, imagemagic, ocr function and more! ',
install_requires=[
'Pillow',
'requests',
'loguru',
'numpy',
'pandas',
],
)