Files
ReAgent/serving/setup.py
Jason Gauci fcf620a7a2 build system and submodules for RASP oss
Summary: Pull Request resolved: https://github.com/facebookresearch/ReAgent/pull/159

Reviewed By: ppuliu

Differential Revision: D17826734

Pulled By: MisterTea

fbshipit-source-id: 69ac6c40cc1c1e1b98d3dc52bc4aa6e0c0e3b57e
2019-10-09 12:24:23 -07:00

29 lines
610 B
Python

#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
from setuptools import find_packages, setup
def readme():
with open("README.md") as f:
return f.read()
def requirements():
with open("requirements.txt") as f:
return f.read()
setup(
name="ReAgentServing",
version="0.1",
author="Facebook",
description=("ReAgent Serving Platform"),
long_description=readme(),
url="https://github.com/facebookresearch/ReAgent",
license="BSD",
packages=find_packages(),
install_requires=[],
dependency_links=[],
)