-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 1 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, find_packages
from os.path import join as opj
NAME = 'clut'
DESCR = 'Python Color Lookup Tables'
packages = [NAME]+[f'{NAME}.'+i for i in find_packages(NAME)]
with open(opj(NAME, '_version.py')) as f:
exec(f.read())
setup(
name = NAME,
version = __version__,
author = 'Leo Komissarov',
url = f'https://github.com/oiao/{NAME}',
download_url = f'https://github.com/oiao/{NAME}/archive/master.zip',
description = DESCR,
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
],
keywords = ['image editing', 'CLUT', '3DCLUT', 'HaldCLUT', 'color lookup table', 'image filtering'],
python_requires = '>=3.6',
install_requires = ['numpy', 'Pillow', 'scipy'],
packages = packages,
package_dir = {NAME : NAME},
package_data = {NAME : ['tests/*']},
scripts = [opj('scripts', NAME)],
)