-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (38 loc) · 1.58 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
import os
import setuptools
package_dir = os.path.dirname(os.path.realpath(__file__))
with open(package_dir + "/README.md", "r") as fh:
long_description = fh.read()
requirements_dir = package_dir + '/requirements.txt'
install_requires = []
with open(requirements_dir) as f:
install_requires = f.read().splitlines()
setuptools.setup(
name="adversarial-comms",
version="1.1",
author="Jan Blumenkamp",
author_email="jb2270@cam.ac.uk",
description="Package accompanying the paper 'The Emergence of Adversarial Communication in Multi-Agent Reinforcement Learning'",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/proroklab/adversarial_comms",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
install_requires=install_requires,
entry_points = {
'console_scripts': [
'train_policy=adversarial_comms.train_policy:start_experiment',
'continue_policy=adversarial_comms.train_policy:continue_experiment',
'evaluate_coop=adversarial_comms.evaluate:eval_nocomm_coop',
'evaluate_adv=adversarial_comms.evaluate:eval_nocomm_adv',
'evaluate_random=adversarial_comms.evaluate:eval_random',
'evaluate_plot=adversarial_comms.evaluate:plot',
'evaluate_serve=adversarial_comms.evaluate:serve'
],
},
python_requires='>=3.7',
)