-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (27 loc) · 968 Bytes
/
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
#!/usr/bin/python3
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name="kripton-guard",
version="0.1",
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Networking :: Monitoring',
],
author="Okan Ozdemir",
author_email="[email protected]",
description="Receive notification when a new device is connected to the network.",
license="GPL-3.0",
url="https://github.com/COMU/kripton-guard",
install_requires=['scapy','pyrebase','python-crontab','configparser'],
packages=['kripton-guard'],
scripts=['kripton-guard/kripton-guard'],
data_files=[('/etc/kripton-guard', ['kripton-guard/kripton-guard.conf'])],
include_package_data=True,
zip_safe=False
)