-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
28 lines (23 loc) · 794 Bytes
/
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, find_packages
requirements = [
'numpy', 'pyyaml', 'trimesh', 'wandb', 'torch', 'pytorch_lightning',
'tqdm', 'yacs', 'open3d', 'pytorch3d', 'einops'
]
def get_version():
version_file = 'multi_part_assembly/version.py'
with open(version_file, 'r') as f:
exec(compile(f.read(), version_file, 'exec'))
return locals()['__version__']
setup(
name="multi_part_assembly",
version=get_version(),
description="Code for Learning 3D Geometric Shape Assembly",
long_description="Code for Learning 3D Geometric Shape Assembly",
author="Ziyi Wu",
author_email="[email protected]",
license="",
url="",
keywords="multi part shape assembly",
packages=find_packages(),
install_requires=requirements,
)