-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
28 lines (27 loc) · 1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup
setup(name='meshseg',
version='1.0',
description='Official implementation of satr: zero-shot semantic segmentation of 3d shapes',
url='https://samir55.github.io/SATR/',
author='Ahmed Abdelreheem',
author_email='[email protected]',
license='MIT',
install_requires=['potpourri3d',
# 'numpy<=1.19',
'matplotlib',
'yacs',
'ftfy',
'timm',
'einops',
'prettytable',
'pycocotools',
'trimesh',
'scikit-learn',
'tqdm',
'opencv-python',
'nltk',
'inflect',
'transformers',
'omegaconf'], # todo add Koalin in the readme
packages=['meshseg'],
zip_safe=False)