mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 18:20:33 -04:00
21 lines
852 B
Python
21 lines
852 B
Python
#!/usr/bin/python
|
|
|
|
"""Setup script for the dynagen module distribution."""
|
|
# run this like python setup --root=/usr/local
|
|
|
|
from distutils.core import setup, Extension
|
|
|
|
setup( # Distribution meta-data
|
|
name = "dynagen",
|
|
version = "0.11.0",
|
|
description = "A frontend for dynamips",
|
|
author = "Greg Anuzelli",
|
|
author_email = "dynagen@gmail.com",
|
|
url = "http://sourceforge.net/projects/dyna-gen",
|
|
license = "GPLv2",
|
|
long_description = """Dynagen is a utility for use with the dynamips Cisco router simulator. It allows you to quickly provision and manage virtual networks using an INI like configuration file.""",
|
|
py_modules = ['confConsole','console','dynamips_lib','pemu_lib','pemubin','pemuwrapper']
|
|
)
|
|
|
|
print "If you have installed the modules, copy dynagen to some "
|
|
print "place in your $PATH, like /usr/local/bin/."
|