forked from ziirish/burp-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·89 lines (79 loc) · 2.63 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python
# coding: utf-8
import os
import os.path
import re
import sys
from setuptools import setup, find_packages
def readme():
"""
Function used to skip the screenshots part
"""
desc = ''
cpt = 0
with open('README.rst') as f:
for l in f.readlines():
if l.rstrip() == 'Screenshots':
cpt += 1
elif cpt > 0:
cpt += 1
if cpt > 7:
cpt = 0
if cpt > 0:
continue
desc += l
return desc
with open(os.path.join(os.path.dirname(__file__), 'burpui', '__init__.py')) as f:
data = f.read()
name = re.search("__title__ *= *'(.*)'", data).group(1)
author = re.search("__author__ *= *'(.*)'", data).group(1)
author_email = re.search("__author_email__ *= *'(.*)'", data).group(1)
description = re.search("__description__ *= *'(.*)'", data).group(1)
url = re.search("__url__ *= *'(.*)'", data).group(1)
with open('requirements.txt', 'r') as f:
requires = [x.strip() for x in f if x.strip()]
with open('test-requirements.txt', 'r') as f:
test_requires = [x.strip() for x in f if x.strip()]
datadir = os.path.join('share', 'burpui', 'etc')
contrib = os.path.join('share', 'burpui', 'contrib')
setup(
name=name,
version=open('VERSION').read().rstrip(),
description=description,
long_description=readme(),
license=open('LICENSE').read(),
author=author,
author_email=author_email,
url=url,
keywords='burp web ui',
packages=find_packages(),
include_package_data=True,
package_data={
'static': 'burpui/static/*',
'templates': 'burpui/templates/*'
},
scripts=['bin/burp-ui', 'bin/bui-agent'],
data_files=[
(datadir, [os.path.join(datadir, 'burpui.sample.cfg')]),
(datadir, [os.path.join(datadir, 'buiagent.sample.cfg')]),
(os.path.join(contrib, 'centos'), ['contrib/centos/init.sh']),
(os.path.join(contrib, 'debian'), ['contrib/debian/init.sh']),
(os.path.join(contrib, 'gunicorn.d'), ['contrib/gunicorn.d/burp-ui'])
],
install_requires=requires,
extras_require={
'ldap_authentication': ['ldap3']
},
tests_require=test_requires,
classifiers=[
'Framework :: Flask',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Archiving :: Backup',
'Topic :: System :: Monitoring'
]
)