mirror of
https://git.mirrors.martin98.com/https://github.com/danielgatis/rembg
synced 2025-07-10 06:41:48 +08:00
37 lines
1014 B
Python
37 lines
1014 B
Python
import pathlib
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
here = pathlib.Path(__file__).parent.resolve()
|
|
|
|
long_description = (here / "README.md").read_text(encoding="utf-8")
|
|
|
|
with open("requirements.txt") as f:
|
|
requireds = f.read().splitlines()
|
|
|
|
setup(
|
|
name="rembg",
|
|
version="1.0.9",
|
|
description="Remove image background",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/danielgatis/rembg",
|
|
author="Daniel Gatis",
|
|
author_email="danielgatis@gmail.com",
|
|
classifiers=[
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
],
|
|
keywords="remove, background, u2net",
|
|
package_dir={"": "src"},
|
|
packages=find_packages(where="src"),
|
|
python_requires=">=3.5, <4",
|
|
install_requires=requireds,
|
|
entry_points={
|
|
"console_scripts": [
|
|
"rembg=rembg.cmd.cli:main",
|
|
"rembg-server=rembg.cmd.server:main",
|
|
],
|
|
},
|
|
)
|