-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (26 loc) · 877 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
28
29
30
from setuptools import setup
setup(
name='animalai',
version='1.1.1',
description='Animal AI competition interface',
url='https://github.com/beyretb/AnimalAI-Olympics',
author='Benjamin Beyret',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6'
],
packages=['animalai.envs', 'animalai.envs.gym', 'animalai.communicator_objects'], # Required
zip_safe=False,
install_requires=[
'Pillow>=4.2.1,<=5.4.1',
'numpy>=1.13.3,<=1.14.5',
'protobuf>=3.6,<3.7',
'grpcio>=1.11.0,<1.12.0',
'pyyaml>=5.1',
'jsonpickle>=1.2',
'gym'],
python_requires=">=3.5,<3.8",
)