add setup.py
This commit is contained in:
42
setup.py
42
setup.py
@@ -1 +1,41 @@
|
||||
# TODO: make this a python package
|
||||
import setuptools
|
||||
from pathlib import Path
|
||||
|
||||
web_files = Path("lama_cleaner/app/build/").glob("**/*")
|
||||
web_files = [str(it).replace("lama_cleaner/", "") for it in web_files]
|
||||
|
||||
with open("README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
|
||||
def load_requirements():
|
||||
requirements_file_name = "requirements.txt"
|
||||
requires = []
|
||||
with open(requirements_file_name) as f:
|
||||
for line in f:
|
||||
if line:
|
||||
requires.append(line.strip())
|
||||
return requires
|
||||
|
||||
|
||||
# https://setuptools.readthedocs.io/en/latest/setuptools.html#including-data-files
|
||||
setuptools.setup(
|
||||
name="lama-cleaner",
|
||||
version="0.9.0",
|
||||
author="PanicByte",
|
||||
author_email="cwq1913@gmail.com",
|
||||
description="Image inpainting tool powered by SOTA AI Model",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/Sanster/lama-cleaner",
|
||||
packages=setuptools.find_packages("./"),
|
||||
package_data={"lama_cleaner": web_files},
|
||||
install_requires=load_requirements(),
|
||||
python_requires=">=3.6",
|
||||
entry_points={"console_scripts": ["lama-cleaner=lama_cleaner:entry_point"]},
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user