-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 810 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
from setuptools import setup, find_packages
setup(
name = 'eorl',
packages = find_packages(exclude=['dataset-collection']),
version = '0.0.1',
license='MIT',
description = 'Expert Offline RL Datasets',
author = 'Harry Songhurst',
author_email = 'harrysonghurst@gmail.com',
url = 'https://github.com/indrasweb/expert-offline-rl',
keywords = ['self-supervised learning', 'contrastive learning', 'imitation learning', 'reinforcement learning'],
include_package_data=True,
install_requires=[
'gsutil',
'numpy'
],
classifiers=[
'Development Status :: Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7.9',
],
)