Skip to content

Commit

Permalink
fix : minor edit in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Oct 7, 2020
1 parent 00443c1 commit 3590685
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,21 @@
from setuptools import setup
except ImportError:
from distutils.core import setup
from pyrgg.params import PYRGG_DESCRIPTION
from textwrap import fill

_description = """\
Pyrgg is an easy-to-use synthetic random graph generator written in Python
which supports various graph file formats including DIMACS .gr files.
Pyrgg has the ability to generate graphs of different sizes
and is designed to provide input files
for broad range of graph-based research applications,
including but not limited to testing,
benchmarking and performance-analysis of graph processing frameworks.
Pyrgg target audiences are computer scientists
who study graph algorithms and graph processing frameworks.
"""

PYRGG_DESCRIPTION = fill(_description, width=70)


def get_requires():
Expand Down

0 comments on commit 3590685

Please sign in to comment.