mirror of
https://github.com/CumulusNetworks/ifupdown2.git
synced 2024-05-06 15:54:50 +00:00
python-ifupdown initial checkin
Ticket: CM-1438 Reviewed By: TBD Testing Done: - Will checkin build files after some more testing and performance numbers. It will go into the testing repo for 2.0 - All TODO items are part of the checked in TODO file
This commit is contained in:
16
setup.py
Executable file
16
setup.py
Executable file
@ -0,0 +1,16 @@
|
||||
from distutils.core import setup
|
||||
|
||||
setup(name='ifupdown2',
|
||||
version='0.1',
|
||||
description = "ifupdown 2",
|
||||
author='Roopa Prabhu',
|
||||
author_email='roopa@cumulusnetworks.com',
|
||||
url='cumulusnetworks.com',
|
||||
package_dir = {'ifupdown' : 'pkg'},
|
||||
packages=['ifupdown'],
|
||||
scripts = ['sbin/ifupdown'],
|
||||
data_files=[('share/man/man8/',
|
||||
['man/ifup.8', 'man/ifdown.8', 'man/ifquery.8']),
|
||||
('/etc/init.d/',
|
||||
['init.d/networking'])]
|
||||
)
|
Reference in New Issue
Block a user