nodhcp/setup.py

19 lines
409 B
Python
Raw Permalink Normal View History

2014-11-03 18:53:30 +00:00
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'Get your network setup up and running without dhcp',
'author': 'My Name',
'url': 'http://github.com/Mic92/nodhcp',
'author_email': 'joerg@higgsboson.tk',
'version': '0.1',
'install_requires': ['nose'],
'packages': ['nodhcp'],
'scripts': [],
'name': 'nodhcp'
}
setup(**config)