1 Star 0 Fork 15

lehung/png-dilator

forked from caogtaa/png-dilator 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
caogtaa 提交于 2021-05-24 22:32 . add gitignore, simplify code
'''
Author: GT<caogtaa@gmail.com>
Date: 2021-05-07 12:05:41
LastEditors: GT<caogtaa@gmail.com>
LastEditTime: 2021-05-23 15:50:39
'''
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.4",
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="caogtaa@gmail.com",
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=["opencv-python", "numpy", "fire"],
entry_points={
"console_scripts": [
"dilator=dilator.__main__:main",
]
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lehung/png-dilator.git
git@gitee.com:lehung/png-dilator.git
lehung
png-dilator
png-dilator
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385