forked from NeuralMMO/environment
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
69 lines (63 loc) · 1.85 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from itertools import chain
from setuptools import find_packages, setup
REPO_URL = "https://github.com/neuralmmo/environment"
extra = {
'docs': [
'sphinx==5.0.0',
'sphinx-rtd-theme==0.5.1',
'sphinxcontrib-youtube==1.0.1',
'myst-parser==1.0.0',
'sphinx-rtd-theme==0.5.1',
'sphinx-design==0.4.1',
'furo==2023.3.27',
],
}
extra['all'] = list(set(chain.from_iterable(extra.values())))
with open('nmmo/version.py', encoding="utf-8") as vf:
ver = vf.read().split()[-1].strip("'")
setup(
name="nmmo",
description="Neural MMO is a platform for multiagent intelligence research " + \
"inspired by Massively Multiplayer Online (MMO) role-playing games. " + \
"Documentation hosted at neuralmmo.github.io.",
long_description_content_type="text/markdown",
version=ver,
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy==1.23.3',
'scipy==1.10.0',
'pytest==7.3.0',
'pytest-benchmark==3.4.1',
'autobahn==19.3.3',
'Twisted==19.2.0',
'vec-noise==1.1.4',
'imageio==2.23.0',
'ordered-set==4.1.0',
'pettingzoo==1.19.0',
'gym==0.23.0',
'pylint==2.16.0',
'psutil==5.9.3',
'py==1.11.0',
'tqdm<5',
'dill==0.3.6',
],
extras_require=extra,
python_requires=">=3.7",
license="MIT",
author="Joseph Suarez",
author_email="jsuarez@mit.edu",
url=REPO_URL,
keywords=["Neural MMO", "MMO"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)