Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Ozan Catal
Animal Ai Env
Commits
a105d636
Commit
a105d636
authored
Apr 23, 2020
by
Benjamin
Browse files
update requirements.txt and setup.py
parent
b8840937
Changes
3
Hide whitespace changes
Inline
Side-by-side
animalai/setup.py
View file @
a105d636
from
setuptools
import
setup
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"animalai"
,
version
=
"2.0.0b0"
,
description
=
"Animal AI
competition interface
"
,
description
=
"Animal AI
envronment Python API
"
,
url
=
"https://github.com/beyretb/AnimalAI-Olympics"
,
author
=
"Benjamin Beyret"
,
author_email
=
"b
b1010@ic.ac.uk
"
,
author_email
=
"b
eyretb@gmail.com
"
,
classifiers
=
[
"Intended Audience :: Developers"
,
"Topic :: Scientific/Engineering :: Artificial Intelligence"
,
"License :: OSI Approved :: Apache Software License"
,
"Programming Language :: Python :: 3.6"
,
"Programming Language :: Python :: 3.7"
,
],
packages
=
[
"animalai.envs"
,
"animalai.envs.gym"
,
"animalai.communicator_objects"
,
],
# Required
packages
=
find_packages
(
exclude
=
[
"*.tests"
,
"*.tests.*"
,
"tests.*"
,
"tests"
]),
zip_safe
=
False
,
install_requires
=
[
"mlagents-envs==0.15.0"
,
"jsonpickle"
,
"pyyaml"
],
python_requires
=
">=3.5"
,
...
...
animalai_train/setup.py
View file @
a105d636
from
setuptools
import
setup
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"animalai_train"
,
version
=
"2.0.0b0"
,
description
=
"Animal AI
competition
training library"
,
description
=
"Animal AI training library"
,
url
=
"https://github.com/beyretb/AnimalAI-Olympics"
,
author
=
"Benjamin Beyret"
,
author_email
=
"b
b1010@ic.ac.uk
"
,
author_email
=
"b
eyretb@gmail.com
"
,
classifiers
=
[
"Intended Audience :: Developers"
,
"Topic :: Scientific/Engineering :: Artificial Intelligence"
,
"License :: OSI Approved :: Apache Software License"
,
"Programming Language :: Python :: 3.6"
,
"Programming Language :: Python :: 3.7"
,
],
packages
=
[
"animalai_train"
],
# Required
packages
=
find_packages
(
exclude
=
[
"*.tests"
,
"*.tests.*"
,
"tests.*"
,
"tests"
]),
zip_safe
=
False
,
install_requires
=
[
"animalai==2.0.0b0"
,
"mlagents==0.15.0"
],
python_requires
=
">=3.6.1"
,
...
...
examples/requirements.txt
View file @
a105d636
tensorflow>=1.7,<2.0 # if you wish to run examples using tf>=2.0 change the baselines requirement accordingly
animalai==2.0.0b0
animalai_train==2.0.0b0
baselines # replace with git+https://github.com/openai/baselines.git@tf2 to use tf2
jupyter
matplotlib
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment