-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
36 lines (29 loc) · 916 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
31
32
33
34
35
36
import os
import sys
from distutils.core import setup
from setuptools import find_packages
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'malmopy'))
from version import VERSION
extras = {
'chainer': ['chainer>=1.21.0'],
'gym': ['gym[atari]>=0.7.0'],
'tensorflow': ['tensorflow'],
}
# Meta dependency groups.
all_deps = []
for group_name in extras:
all_deps += extras[group_name]
extras['all'] = all_deps
setup(
name='malmopy',
version=VERSION,
packages=[package for package in find_packages()
if package.startswith('malmopy')],
url='https://github.com/Microsoft/malmo-challenge',
license='MIT',
author='Microsoft Research Cambridge',
author_email='',
description='Malmo Collaborative AI Challenge task and example code',
install_requires=['future', 'numpy>=1.11.0', 'six>=0.10.0', 'pandas', 'Pillow'],
extras_require=extras
)