mirror of
https://github.com/facebookresearch/ReAgent.git
synced 2026-06-16 12:44:41 +00:00
Summary: Pull Request resolved: https://github.com/facebookresearch/ReAgent/pull/159 Reviewed By: ppuliu Differential Revision: D17826734 Pulled By: MisterTea fbshipit-source-id: 69ac6c40cc1c1e1b98d3dc52bc4aa6e0c0e3b57e
29 lines
610 B
Python
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=[],
|
|
)
|