-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
36 lines (32 loc) · 782 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
#!/usr/bin/env python
from setuptools import setup, find_packages
required = [
"numpy",
"gym",
"matplotlib",
"scipy",
"networkx",
"opencv-python",
"PyOpenGL",
"PyVirtualDisplay",
"torch",
"glfw",
]
extras_required = {
"experiments_local": ["jupyterlab", "scikit-learn"],
"experiments_remote": ["scikit-learn"],
}
setup(
name="neuronav",
version="2.5.0",
description="Neuro-Nav",
license="Apache License 2.0",
author="Arthur Juliani",
author_email="awjuliani@gmail.com",
url="https://github.com/awjuliani/neuro-nav",
packages=find_packages(),
install_requires=required,
extras_require=extras_required,
include_package_data=True,
package_data={"neuronav": ["envs/textures/*.png"]},
)