Skip to content

Commit

Permalink
Add setup.py.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 414463702
  • Loading branch information
Joshua Greaves committed Dec 6, 2021
1 parent ab0e200 commit 66df1b2
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
39 changes: 39 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# coding=utf-8
# Copyright 2021 The Balloon Learning Environment Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Setup file for installing the BLE."""
import setuptools

setuptools.setup(
name='balloon_learning_environment',
version='0.0.1',
packages=setuptools.find_packages(),
install_requires=[
'absl-py',
'dopamine-rl',
'flax',
'gin-config',
'gym',
'opensimplex',
's2sphere',
'scikit-learn',
'tensorflow',
'tensorflow-probability',
'transitions',
],
package_data={
'': ['*.msgpack', '*.pb'],
},
)

0 comments on commit 66df1b2

Please sign in to comment.