-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (35 loc) · 1.17 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
import os
from setuptools import setup, find_packages
def read(fname):
"""Reads a file's contents as a string.
Args:
fname: Filename.
Returns:
File's contents.
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
VERSION = "0.1"
BASE_URL = "https://github.com/imgeorgiev/dmc2gymnasium"
INSTALL_REQUIRES = ["numpy>=1.21", "dm-control>=1.0.8", "gymnasium>=0.26.3"]
setup(
name="dmc2gymnasium",
version=VERSION,
description="Gymnasium integration for the DeepMind Control (DMC) suite",
long_description=read("README.md"),
author="Ignat Georgiev",
author_email="[email protected]",
license="MIT",
url=BASE_URL,
packages=find_packages(),
zip_safe=True,
install_requires=INSTALL_REQUIRES,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education" "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)