-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
24 lines (22 loc) · 996 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
##############################################################
## text2pose ##
## Copyright (c) 2022, 2023 ##
## Institut de Robotica i Informatica Industrial, CSIC-UPC ##
## and Naver Corporation ##
## Licensed under the CC BY-NC-SA 4.0 license. ##
## See project root for license details. ##
##############################################################
from setuptools import setup, find_packages
setup(name='text2pose',
version='2.0',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
author='Ginger Delmas',
author_email='[email protected]',
description='PoseScript ECCV22 & PoseFix ICCV23.',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[],
dependency_links=[],
)