Fabrice-TIERCELIN commited on
Commit
2e5b5b2
1 Parent(s): 8e10f60

Delete clipseg/setup.py

Browse files
Files changed (1) hide show
  1. clipseg/setup.py +0 -30
clipseg/setup.py DELETED
@@ -1,30 +0,0 @@
1
- from setuptools import setup
2
-
3
- with open("README.md", "r", encoding="utf-8") as readme_file:
4
- readme = readme_file.read()
5
-
6
- requirements = [
7
- "numpy",
8
- "scipy",
9
- "matplotlib",
10
- "torch",
11
- "torchvision",
12
- "opencv-python",
13
- "CLIP @ git+https://github.com/openai/CLIP.git"
14
- ]
15
-
16
- setup(
17
- name='clipseg',
18
- packages=['clipseg'],
19
- package_dir={'clipseg': 'models'},
20
- package_data={'clipseg': [
21
- "../weights/*.pth",
22
- ]},
23
- version='0.0.1',
24
- url='https://github.com/timojl/clipseg',
25
- python_requires='>=3.9',
26
- install_requires=requirements,
27
- description='This repository contains the code used in the paper "Image Segmentation Using Text and Image Prompts".',
28
- long_description=readme,
29
- long_description_content_type="text/markdown",
30
- )