| 1 | from setuptools import setup, find_packages |
| 2 | import os |
| 3 | |
| 4 | ldesc = open(os.path.join(os.path.dirname(__file__), 'README')).read() |
| 5 | |
| 6 | setup( |
| 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 | |