forked from PaloAltoNetworks/minemeld-prisma-access
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.18 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
from setuptools import setup, find_packages
import sys
import json
import os.path
sys.path.insert(0, os.path.abspath('.'))
with open('requirements.txt') as f:
_requirements = f.read().splitlines()
with open('minemeld.json') as f:
_metadata = json.load(f)
_entry_points = {}
if 'entry_points' in _metadata:
for epgroup, epoints in _metadata['entry_points'].iteritems():
_entry_points[epgroup] = ['{} = {}'.format(k, v) for k, v in epoints.iteritems()]
setup(
name=_metadata['name'],
version=_metadata['version'],
author=_metadata['author'],
author_email=_metadata['author_email'],
description=_metadata['description'],
classifiers=[
'Framework :: MineMeld',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Topic :: Security',
'Topic :: Internet'
],
packages=find_packages(),
provides=find_packages(),
install_requires=_requirements,
package_data={
'': [
'prototypes/*.yml',
'webui/*.js',
'webui/*.html'
]
},
entry_points=_entry_points
)