forked from Security-Banana-Group/MoA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 763 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
import os
import sys
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup , find_packages
I
setup(name='MoA',
version='0.1',
description='Tools for testing a network',
urls='https://github.com/Security-Banana-Group/MoA',
author='EVT RIT',
author_email='[email protected]',
packages=find_packages(),
scripts= ['bin/cansetup'],
license='MIT',
include_package_data=False,
package_data={ '': ['*.txt', '*.rst']},
zip_safe=False,
entry_points ={
'console_scripts': [
'gateway = gateway.exec:main_func_gateway', #when I determine the main method of our tools
],
})
BIN_PATH = '/usr/local/bin'