Skip to content

Commit

Permalink
Add standard setup.py for installation and packaging.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkiro committed Feb 29, 2016
1 parent 5ae6868 commit 2b74392
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from __future__ import absolute_import

import mindns
import distutils.core

distutils.core.setup(
name='Mini DNS',
version=mindns.__version__,
scripts=[
'scripts/mdns.py',
],
packages=[
'mindns',
],
)

0 comments on commit 2b74392

Please sign in to comment.