forked from ml-lab/home-platform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (43 loc) · 1.65 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
import numpy as np
from setuptools import setup, Extension, find_packages
astar_module = Extension('home_platform.pathfinding._astar',
define_macros=[('MAJOR_VERSION', '1'),
('MINOR_VERSION', '0')],
include_dirs=[np.get_include()],
sources=['./home_platform/pathfinding/astar.cpp',
'./home_platform/pathfinding/astar.i'],
language='c++',
swig_opts=['-c++', '-I./swig'],
extra_compile_args=['-O3', '-std=c++0x'],
)
setup(
name="HoME Platform",
version="0.1.0",
author="Simon Brodeur",
author_email="[email protected]",
description=("Househole multimodal environment (HoME) based on the SUNCG indoor scenes dataset."),
license="BSD 3-Clause License",
keywords="artificial intelligence, machine learning, reinforcement learning",
url="https://github.com/HoME-Platform/home-platform",
ext_modules=[astar_module],
packages=find_packages(),
include_package_data=True,
setup_requires=['setuptools-markdown'],
install_requires=[
"setuptools-markdown",
"numpy",
"scipy",
"matplotlib",
"panda3d",
"nltk",
"PySoundFile"
],
long_description_markdown_filename='README.md',
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
],
)