Skip to content

Commit

Permalink
Fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenbach committed Sep 2, 2022
1 parent c8529f7 commit 8735dc4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup

with open("README.md", "r", encoding="utf-8") as readme_file:
readme = readme_file.read()
Expand All @@ -15,12 +15,16 @@

setup(
name='clipseg',
packages=['clipseg'],
package_dir={'clipseg': 'models'},
package_data={'clipseg': [
"../weights/*.pth",
]},
version='0.0.1',
url='https://github.com/timojl/clipseg',
python_requires='>=3.9',
install_requires=requirements,
description='This repository contains the code used in the paper "Image Segmentation Using Text and Image Prompts".',
packages=find_packages(),
long_description=readme,
long_description_content_type="text/markdown",
)

0 comments on commit 8735dc4

Please sign in to comment.