-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 703 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name="lbforaging",
version="2.0.0",
description="Level Based Foraging Environment",
author="Filippos Christianos",
url="https://github.com/semitable/lb-foraging",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
install_requires=["numpy", "gymnasium", "pyglet<2", "six"],
extras_require={"test": ["pytest"]},
include_package_data=True,
)