forked from DLR-RM/BlenderProc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 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
from setuptools import setup, find_packages
import os
# Extract version from blenderproc/version.py
here = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(here, "blenderproc", "version.py")) as fp:
exec(fp.read(), version)
with open(os.path.join(here, "README.md")) as fp:
long_description = fp.read()
setup(name='blenderproc',
version=version['__version__'],
url='https://github.com/DLR-RM/BlenderProc',
author='German Aerospace Center (DLR) - Institute of Robotics and Mechatronics (RM)',
packages=find_packages(exclude=['docs', 'examples', 'external', 'images', 'resources', 'scripts', 'tests']),
include_package_data=True,
entry_points={
'console_scripts': ['blenderproc=blenderproc.command_line:cli'],
},
install_requires=["setuptools", "pyyaml", "requests", "matplotlib", "numpy", "Pillow", "h5py", "progressbar"],
long_description=long_description,
long_description_content_type='text/markdown'
)