-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
30 lines (23 loc) · 812 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
26
27
28
29
30
from setuptools import setup, find_packages
__version__ = "0.0.6"
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="[email protected]",
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]")