-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
29 lines (26 loc) · 997 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
29
# Copyright (c) 2020 NVIDIA Corporation. All rights reserved.
# This work is licensed under the NVIDIA Source Code License - Non-commercial. Full
# text can be found in LICENSE.md
import io
import os
import re
from setuptools import setup, find_packages
# This method was adapted from code in
# https://github.com/albumentations-team/albumentations
def get_version():
current_dir = os.path.abspath(os.path.dirname(__file__))
version_file = os.path.join(current_dir, "dream", "__init__.py")
with io.open(version_file, encoding="utf-8") as f:
return re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]', f.read(), re.M).group(1)
setup(
name='dream',
version=get_version(),
author='NVIDIA',
author_email='[email protected]',
maintainer='Timothy Lee',
maintainer_email='[email protected]',
description='Deep Robot-to-camera Extrinsics for Articulated Manipulators',
packages=['dream'],
package_dir={'dream': 'dream'},
zip_safe=False
)