-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 726 Bytes
/
setup.py
File metadata and controls
27 lines (21 loc) · 726 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
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="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", "gymnasium[atari, accept-rom-license]",
],
)