forked from semk/iDiscover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 loc) · 1.3 KB
/
setup.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
import os
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
def readme(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='idiscover',
version='1.0',
description='Discover the devices (IP address & Manufacturer information) in a (sub)network',
long_description=readme('README.md'),
license='MIT License',
keywords='Discover IP Address Manufacturer OUI ARP MAC',
author='Sreejith Kesavan',
author_email='[email protected]',
url='https://github.com/semk/iDiscover',
download_url='https://github.com/semk/iDiscover/tarball/master',
install_requires=['ipcalc >= 1.1.2'],
packages=find_packages(),
data_files=[('/opt/idiscover', ['data/oui.txt'])],
include_package_data=True,
entry_points={
'console_scripts': ['idiscover = idiscover.discover:run']
},
platforms=['any'],
classifiers=[
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Environment :: Console',
'Topic :: System :: Networking',
'Topic :: Utilities'
],
zip_safe=True
)