-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
70 lines (56 loc) · 1.97 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# -*- coding: utf-8 -*-
"""
Real-time Color Kit (Rickrack) is a free software, which is distributed
in the hope that it will be useful, but WITHOUT ANY WARRANTY. You can
redistribute it and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation. See the GNU General
Public License for more details.
Please visit https://github.com/eigenmiao/Rickrack for more infomation
about Rickrack.
Copyright (c) 2019-2023 by Eigenmiao. All Rights Reserved.
"""
from setuptools import setup
setup(
name="Rickrack",
version="2.9.10",
author="Eigenmiao",
author_email="[email protected]",
description="Generate harmonious colors freely.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://eigenmiao.com/rickrack/",
classifiers=[
"Topic :: Multimedia :: Graphics",
"Topic :: Utilities",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
],
keywords=["Color-Editor", "Color-Picker", "Color-Palette", "Digital-Palette", "Desktop-Application"],
install_requires=[
"numpy",
],
python_requires=">=3.5",
entry_points={
"console_scripts": [
"rickrack = rickrack.rickrack:startup",
],
"gui_scripts": [
"rickrack-gui = rickrack.rickrack:startup",
],
},
include_package_data=True,
packages=["rickrack"],
package_data={
"rickrack": [
"rickrack/*",
],
}
)