-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
44 lines (38 loc) · 1.09 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
41
42
43
44
from setuptools import setup, find_packages
import os
__version__ = '2.1.0'
# with open('requirements.txt') as f:
# reqs = f.read().splitlines()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='ocatari',
version=__version__,
author='Quentin Delfosse',
packages=find_packages(),
# package_data={'': extra_files},
include_package_data=True,
# package_dir={'':'src'},
url='https://github.com/k4ntz/OC_Atari',
description='Object Centric Atari 2600',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
"gymnasium",
"matplotlib",
"numpy<2.0.0",
"opencv_python",
"scikit_image",
"termcolor",
"seaborn",
"pandas",
"scikit-learn",
"keyboard",
"tqdm",
"pygame",
"pyfiglet",
]
)
print("Please install gymnasium atari dependencies, using:\n",
"pip install gymnasium[atari, accept-rom-license]")