Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import os
import sys
from setuptools import find_packages, setup
sys.path.append(os.path.join(os.path.dirname(__file__), 'src'))
import ifcfg # noqa
setup(
name='ifcfg',
version=ifcfg.__version__,
description="Python Ifconfig Wrapper for Unix/Linux/MacOSX",
long_description=open("README.rst").read(),
keywords='',
author='Original author: BJ Dierkes',
author_email='info@learningequality.org',
url='https://github.com/ftao/python-ifcfg',
license='BSD',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=[],
setup_requires=[],
entry_points="""
""",