aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: f98a98d7f7ae06141854bcccaf6c5beda54be973 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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',
    ]
)