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
|
{% set name = "pyrgg" %}
{% set version = "2.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
git_url: https://github.com/sepandhaghighi/pyrgg
git_rev: v{{ version }}
build:
noarch: python
number: 0
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- setuptools
- python >=3.7
run:
- art >=0.7
- pyyaml >=3.12
- python >=3.7
about:
home: https://github.com/sepandhaghighi/pyrgg
license: MIT
license_family: MIT
summary: Python Random Graph Generator
description: |
PyRGG is a user-friendly synthetic random graph generator that is written in Python and supports multiple graph file formats, such as DIMACS-Graph files. It can generate graphs of various sizes and is specifically designed to create input files for a wide range of graph-based research applications, including testing, benchmarking, and performance analysis of graph processing frameworks. PyRGG is aimed at computer scientists who are studying graph algorithms and graph processing frameworks.
Website: https://www.pyrgg.site
Repo: https://github.com/sepandhaghighi/pyrgg
extra:
recipe-maintainers:
- sepandhaghighi
|