-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (28 loc) · 917 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
setup(
name="cluttool",
version="wip", # i.e. this version doesn't even work yet.
packages=find_packages(),
entry_points={
'gui_scripts': [
'cluttool = cluttool:cli',
]
},
install_requires=['click>=6.7<8.0'],
install_requires=load_requirements('requirements/base.in'),
author="Troy Sankey",
author_email="[email protected]",
description="create and convert 3D/color LUTs",
license="GPLv3",
keywords="lut hald clut 3dl 3d color",
classifiers=[
(
'License :: OSI Approved'
':: GNU General Public License v3 or later (GPLv3+)'),
'Operating System :: POSIX',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
],
)