forked from microsoft/SmartPlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.16 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
import setuptools
import pathlib
setuptools.setup(
name='smartplay',
version='0.0.1',
description='A benchmarking tool for LLMs with games',
url='',
long_description=pathlib.Path('README.md').read_text(),
long_description_content_type='text/markdown',
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
# package_data={'crafter': ['data.yaml', 'assets/*']},
entry_points={'console_scripts': ['smartplay=smartplay.run_gui:main']},
install_requires=[
'numpy',
'pygame',
'connected-components-3d',
'gym',
'minedojo',
'imageio',
'pillow',
'opensimplex',
'ruamel.yaml',
'importlib-metadata==6.6.0',
'importlib-resources==5.12.0',
'vgdl @ git+https://github.com/ahjwang/py-vgdl',
'pygame==1.9.6',
],
include_package_data=True,
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)