diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2014-08-12 22:19:21 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2014-08-12 22:19:21 -0400 |
commit | 3a037c0254ef50f5b0d33995b1ea5ff3d1b95af3 (patch) | |
tree | 8af8f52ad8ce23efd7a7401ac366c9654d6a55f1 /setup.py | |
download | cidrchk-3a037c0254ef50f5b0d33995b1ea5ff3d1b95af3.tar.gz |
Initial commit
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f98a98d --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +import os +from setuptools import setup + +setup( + name = 'cidrchk', + version = '1.0.0', + author = 'Joseph Hunkeler', + author_email = 'jhunkeler@gmail.com', + description = ('A simple "Is my computer on this subnet?" detection script.'), + license = 'BSD', + keywords = 'cidrchk detect network interface ethernet', + zip_safe = True, + scripts = [ + 'cidrchk', + ], + install_requires = [ + 'netaddr', + 'netifaces', + 'argparse', + ], + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Topic :: Utilities', + 'License :: OSI Approved :: BSD License', + ] +) |