-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (27 loc) · 888 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, find_packages
setup(
setup_requires=['wheel'],
name="color_manager_nv",
version="1.0.0",
author="Nicklas Vraa",
author_email="[email protected]",
description="A package for recoloring icon- and wallpaper-packs and desktop themes",
url="https://github.com/nicklasvraa/color-manager",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
packages=find_packages(include=["color_manager", "color_manager.*"]),
include_package_data=True,
package_data={
"color_manager": ["palettes/*.json"],
},
exclude=["tests", "packs"],
install_requires=[
"basic_colormath",
"tqdm",
"pillow"
],
)