forked from openai/orrb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 839 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
#!/usr/bin/env python
import setuptools
from os.path import join
import os
from orrb.version import __version__
def read_requirements_file(filename):
req_file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), filename)
with open(req_file_path) as f:
ret = [line.strip() for line in f]
return ret
setuptools.setup(
name='orrb',
version=__version__, # noqa
description='OpenAI Remote Rendering Backend',
url='https://github.com/openai/orrb',
author='OpenAI Robotics Team',
author_email='[email protected]',
packages=['orrb', 'orrb.protos'],
package_data={'orrb.protos': ['RendererConfig.proto',
'RenderService.proto',
'Makefile']},
install_requires=read_requirements_file('requirements.txt'),
)