forked from li-plus/seam-carving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.39 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import os
import re
import setuptools
here = os.path.dirname(__file__)
# get the version string
with open(os.path.join(here, 'seam_carving', '__init__.py')) as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
setuptools.setup(
name='seam-carving',
version=version,
author='Jiahao Li',
author_email='[email protected]',
maintainer='Jiahao Li',
maintainer_email='[email protected]',
url='https://github.com/li-plus/seam-carving',
description='A super-fast Python implementation of seam carving algorithm '
'for intelligent image resizing.',
long_description=open(os.path.join(here, 'README.md')).read(),
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Image Processing',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords=['seam carving', 'computer vision', 'image processing',
'image resizing', 'content aware'],
license='MIT',
python_requires='>=3.5',
install_requires=[
'numpy',
'scipy',
],
extras_require={
'dev': [
'Pillow',
'pytest',
'pytest-cov',
'flake8',
]
}
)