2 Star 15 Fork 3

ZhC/Rickrack

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.97 KB
一键复制 编辑 原始数据 按行查看 历史
eigenmiao 提交于 2024-02-24 15:24 . init
# -*- 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="eigenmiao@outlook.com",
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/*",
],
}
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/eigenmiao/Rickrack.git
git@gitee.com:eigenmiao/Rickrack.git
eigenmiao
Rickrack
Rickrack
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385