6c86e30f63
refs: #5062 Everything is now done through examples like Mininet. bin/minindn no longer provided as a binary installed in the system bin/minindnedit GUI: will no longer be maintained Remove cluster edition, will be re-introduced later Change-Id: Id4ef137cb2a04d1b0dd24d01941757363bbf7d26
14 lines
261 B
Python
14 lines
261 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
from minindn import __version__
|
|
|
|
setup(
|
|
name = "Mini-NDN",
|
|
version = __version__,
|
|
description='Mininet based NDN emulator',
|
|
packages = find_packages(),
|
|
)
|
|
|
|
print(find_packages())
|