-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeta.yaml
48 lines (41 loc) · 1.44 KB
/
meta.yaml
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
{% set name = "adjsim" %}
{% set version = "2.1.0" %}
{% set file_ext = "tar.gz" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
fn: '{{ name }}-{{ version }}.{{ file_ext }}'
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ file_ext }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
- pyqt
- matplotlib
- numpy
run:
- python
- pyqt
- matplotlib
- numpy
test:
imports:
- adjsim
about:
home: https://github.com/SeverTopan/AdjSim
license: GNU General Public License v3 (GPLv3)
license_family: GPL3
license_file: ''
summary: An Agent Based Modelling Engine tailored for Reinforcement Learning.
description: "At its core, AdjSim is an agent-based modelling engine. It allows users to define simulation environments through which agents\
\ interact through ability casting and timestep iteration. The framework is targeted towards agents that behave intelligently, for example a bacterium chasing down food. However, the framework is\
\ extremely flexible - from enabling physics simulation to defining an environment in which `Conway's Game of Life plays out! AdjSim aims\
\ to be a foundational architecture on top of which reinforcement learning can be built."
doc_url: ''
dev_url: ''
extra:
recipe-maintainers: ''