-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 796 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
setup(
name="holodeck",
version="0.3.2.dev0",
description="High fidelity simulated environments for reinforcement learning",
long_description=readme,
long_description_content_type="text/markdown",
author="Joshua Greaves, Max Robinson, Nick Walton, Jayden Milne, Vin Howe, Daniel Ekpo, Kolby Nottingham",
author_email="holodeck@cs.byu.edu",
url="https://github.com/byu-pccl/holodeck",
packages=find_packages("src"),
package_dir={"": "src"},
license="MIT License",
python_requires=">=3.5",
install_requires=[
'posix_ipc >= 1.0.0; platform_system == "Linux"',
'pywin32 >= 1.0; platform_system == "Windows"',
"numpy",
],
)