forked from k4ntz/HackAtari
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (23 loc) · 811 Bytes
/
setup.py
File metadata and controls
30 lines (23 loc) · 811 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
25
26
27
28
29
30
from setuptools import setup, find_packages
__version__ = '0.0.4'
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='hackatari',
version=__version__,
author='Quentin Delfosse, Jannis Blüml',
author_email='quentin.delfosse@cs.tu-darmstadt.de',
packages=find_packages(),
# package_data={'': extra_files},
include_package_data=True,
# package_dir={'':'src'},
url='https://github.com/k4ntz/HAckAtari',
description='Extended Atari Learning Environments',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
"ocatari",
]
)
# print("Please install gymnasium atari dependencies, using:\n",
# "pip install gymnasium[atari, accept-rom-license]")