1 Star 26 Fork 15

caogtaa/png-dilator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
'''
Author: GT<[email protected]>
Date: 2021-05-07 12:05:41
LastEditors: GT<[email protected]>
LastEditTime: 2022-02-15 10:17:49
'''
import pathlib
from setuptools import find_packages, setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="png-dilator",
version="0.8.5",
description="Dilate texture with low alpha pixel to prevent \"black edge\" when rendered by GL",
long_description=README,
long_description_content_type="text/markdown",
# url="https://github.com/caogtaa,
author="GT",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=["pillow", "numpy", "fire"],
entry_points={
"console_scripts": [
"dilator=dilator.__main__:main",
]
},
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/caogtaa/png-dilator.git
[email protected]:caogtaa/png-dilator.git
caogtaa
png-dilator
png-dilator
master

搜索帮助