Skip to content

Commit

Permalink
Conda compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
charwick committed Jul 28, 2022
1 parent d0634d9 commit c252037
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ Helipad is an agent-based modeling framework for Python with powerful visualizat

## How to use

You can install Helipad using Pip.
You can install Helipad using either Pip or Conda, depending on your preferred package manager.

pip install helipad

conda install -c charwick helipad

Once installed, getting started with a model is very simple.

from helipad import *
Expand Down
45 changes: 45 additions & 0 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{% set name = "helipad" %}
{% set version = "1.4" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 357a02ce916e1159422bf6c415ef3e9c585570757d7055976ff63431bd1c58c6

build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"

requirements:
host:
- matplotlib
- pandas
- networkx
- pip
- python >=3.7
run:
- matplotlib
- pandas
- networkx
- python >=3.7

test:
imports:
- helipad

about:
home: "https://helipad.dev"
license: MIT
license_family: MIT
license_file:
summary: "An agent-based modeling framework for Python with a shallow learning curve and powerful visualization capabilities."
dev_url: https://github.com/charwick/helipad/
doc_url: https://helipad.dev/functions/

extra:
recipe-maintainers:
- charwick

0 comments on commit c252037

Please sign in to comment.