-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
29 lines (25 loc) · 1.04 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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(this_directory, 'requirements.txt'), encoding='utf-8') as f:
requirements = f.read().splitlines()
python_requires = '>3.4'
setup(
name='pyCAIR',
packages=['pyCAIR'],
version='0.1.13',
description='This module provides a simple yet powerful mechanism to resize images using Seam Carving Algorithm.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Chirag Shah',
author_email='[email protected]',
url='https://github.com/avidLearnerInProgress/pyCAIR',
download_url='https://github.com/avidLearnerInProgress/pyCAIR/archive/0.1.tar.gz',
license='GPL-3.0',
keywords=['python', 'openCV', 'image-processing', 'dynamic-programming', 'seam-carving'],
classifiers=[],
install_requires=requirements,
python_requires=python_requires
)