Labo

Sign in or create your account | Project List | Help

Labo Git Source Tree

Root/arprequest/setup.py

1from setuptools import setup, find_packages
2import os
3
4ldesc = open(os.path.join(os.path.dirname(__file__), 'README')).read()
5
6setup(
7    name='arprequest',
8    version='0.3',
9    description=('A class which sends an ARP Request to know if a '
10                    'host is online on local networks'),
11    long_description=ldesc,
12    keywords='arp network ethernet',
13    author='Antoine Millet',
14    author_email='antoine@inaps.org',
15    license='WTFPL',
16    py_modules=['arprequest'],
17    url='http://idevelop.org/p/labo/page/ArpRequest/',
18    classifiers=[
19        'Topic :: Communications',
20        'Topic :: System :: Networking',
21        'Topic :: System :: Networking :: Monitoring',
22        'Development Status :: 3 - Alpha',
23        'Intended Audience :: Developers',
24        'Intended Audience :: System Administrators',
25        'License :: Public Domain',
26        'Operating System :: Unix',
27        'Programming Language :: Python',
28    ],
29)
30

Archive Download this file

Branches:
master