forked from shunsukeaihara/colorcorrect
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 942 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 942 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup,Extension
import sys
sys.path.append('./src')
sys.path.append('./test')
version = file('VERSION').read().strip()
setup(name='colorcorrect',
version=version,
description="imprement some of color correction algorithms",
long_description=file('README').read(),
classifiers=[],
keywords=('image-processing computer-vision'),
author='Shunsuke Aihara',
author_email='s.aihara@gmail.com',
url='http://www.bitbucket.org/aihara/colorcorrect',
license='MIT License',
package_dir={'': 'src'},
packages=['colorcorrect'],
ext_modules=[
Extension(
'colorcorrect._cutil', [
'cutil/cutil.cpp',
],
include_dirs=['cutil'],
libraries=['m'],
extra_compile_args=[],
),
],
install_requires=["numpy","Pillow"],
)