mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-15 14:16:08 -06:00
remove unused meta-packages
This commit is contained in:
parent
607d605aa5
commit
881c7e425b
12 changed files with 0 additions and 265 deletions
|
|
@ -1,2 +0,0 @@
|
|||
include README
|
||||
graft burpui_extra
|
||||
|
|
@ -1 +0,0 @@
|
|||
Burp-UI Meta package for extra requirements
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
# -*- coding: utf8 -*-
|
||||
"""
|
||||
Burp-UI is a web-ui for burp backup written in python with Flask and
|
||||
jQuery/Bootstrap
|
||||
|
||||
.. module:: burpui_extra
|
||||
:platform: Unix
|
||||
:synopsis: Burp-UI extra dummy module.
|
||||
|
||||
.. moduleauthor:: Ziirish <hi+burpui@ziirish.me>
|
||||
"""
|
||||
import os
|
||||
import sys
|
||||
|
||||
__title__ = 'burp-ui-extra'
|
||||
__author__ = 'Benjamin SANS (Ziirish)'
|
||||
__author_email__ = 'hi+burpui@ziirish.me'
|
||||
__url__ = 'https://git.ziirish.me/ziirish/burp-ui'
|
||||
__description__ = ('Burp-UI is a web-ui for burp backup written in python with '
|
||||
'Flask and jQuery/Bootstrap')
|
||||
__license__ = 'BSD 3-clause'
|
||||
|
||||
ROOT = os.path.join(os.path.dirname(os.path.realpath(__file__)))
|
||||
if os.path.exists(os.path.join(ROOT, 'VERSION')):
|
||||
__version__ = open(os.path.join(ROOT, 'VERSION')).read().rstrip()
|
||||
else:
|
||||
__version__ = '0.5.1'
|
||||
|
|
@ -1,59 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
import sys
|
||||
import shutil
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
# only used to build the package
|
||||
ROOT = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', '..')
|
||||
|
||||
if os.path.exists(os.path.join(ROOT, 'burpui', 'VERSION')):
|
||||
shutil.copyfile(os.path.join(ROOT, 'burpui', 'VERSION'), 'burpui_extra/VERSION')
|
||||
|
||||
readme = """
|
||||
Burp-UI Meta package for extra requirements
|
||||
"""
|
||||
|
||||
from burpui_extra import __author__, __author_email__, __description__, \
|
||||
__url__, __title__, __version__, __license__
|
||||
name = __title__
|
||||
author = __author__
|
||||
author_email = __author_email__
|
||||
description = __description__
|
||||
url = __url__
|
||||
version = __version__
|
||||
license = __license__
|
||||
|
||||
setup(
|
||||
name=name,
|
||||
packages=find_packages(),
|
||||
version=version,
|
||||
description=description,
|
||||
long_description=readme,
|
||||
license=license,
|
||||
author=author,
|
||||
author_email=author_email,
|
||||
url=url,
|
||||
keywords='burp web ui backup monitoring',
|
||||
install_requires=[
|
||||
'burp-ui>={}'.format(version),
|
||||
'ujson',
|
||||
'redis',
|
||||
'Flask-Session==0.3.1'
|
||||
],
|
||||
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',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Topic :: System :: Archiving :: Backup',
|
||||
'Topic :: System :: Monitoring',
|
||||
]
|
||||
)
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
include README
|
||||
graft burpui_ldap
|
||||
|
|
@ -1 +0,0 @@
|
|||
Burp-UI Meta package for ldap requirements
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
# -*- coding: utf8 -*-
|
||||
"""
|
||||
Burp-UI is a web-ui for burp backup written in python with Flask and
|
||||
jQuery/Bootstrap
|
||||
|
||||
.. module:: burpui_ldap
|
||||
:platform: Unix
|
||||
:synopsis: Burp-UI ldap dummy module.
|
||||
|
||||
.. moduleauthor:: Ziirish <hi+burpui@ziirish.me>
|
||||
"""
|
||||
import os
|
||||
import sys
|
||||
|
||||
__title__ = 'burp-ui-ldap'
|
||||
__author__ = 'Benjamin SANS (Ziirish)'
|
||||
__author_email__ = 'hi+burpui@ziirish.me'
|
||||
__url__ = 'https://git.ziirish.me/ziirish/burp-ui'
|
||||
__description__ = ('Burp-UI is a web-ui for burp backup written in python with '
|
||||
'Flask and jQuery/Bootstrap')
|
||||
__license__ = 'BSD 3-clause'
|
||||
|
||||
ROOT = os.path.join(os.path.dirname(os.path.realpath(__file__)))
|
||||
if os.path.exists(os.path.join(ROOT, 'VERSION')):
|
||||
__version__ = open(os.path.join(ROOT, 'VERSION')).read().rstrip()
|
||||
else:
|
||||
__version__ = '0.5.1'
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
import sys
|
||||
import shutil
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
# only used to build the package
|
||||
ROOT = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', '..')
|
||||
|
||||
if os.path.exists(os.path.join(ROOT, 'burpui', 'VERSION')):
|
||||
shutil.copyfile(os.path.join(ROOT, 'burpui', 'VERSION'), 'burpui_ldap/VERSION')
|
||||
|
||||
readme = """
|
||||
Burp-UI Meta package for ldap requirements
|
||||
"""
|
||||
|
||||
from burpui_ldap import __author__, __author_email__, __description__, \
|
||||
__url__, __title__, __version__, __license__
|
||||
name = __title__
|
||||
author = __author__
|
||||
author_email = __author_email__
|
||||
description = __description__
|
||||
url = __url__
|
||||
version = __version__
|
||||
license = __license__
|
||||
|
||||
setup(
|
||||
name=name,
|
||||
packages=find_packages(),
|
||||
version=version,
|
||||
description=description,
|
||||
long_description=readme,
|
||||
license=license,
|
||||
author=author,
|
||||
author_email=author_email,
|
||||
url=url,
|
||||
keywords='burp web ui backup monitoring',
|
||||
install_requires=[
|
||||
'burp-ui>={}'.format(version),
|
||||
'ldap3'
|
||||
],
|
||||
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',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Topic :: System :: Archiving :: Backup',
|
||||
'Topic :: System :: Monitoring',
|
||||
]
|
||||
)
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
include README
|
||||
graft burpui_sql
|
||||
|
|
@ -1 +0,0 @@
|
|||
Burp-UI Meta package for SQL requirements
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
# -*- coding: utf8 -*-
|
||||
"""
|
||||
Burp-UI is a web-ui for burp backup written in python with Flask and
|
||||
jQuery/Bootstrap
|
||||
|
||||
.. module:: burpui_sql
|
||||
:platform: Unix
|
||||
:synopsis: Burp-UI SQL dummy module.
|
||||
|
||||
.. moduleauthor:: Ziirish <hi+burpui@ziirish.me>
|
||||
"""
|
||||
import os
|
||||
import sys
|
||||
|
||||
__title__ = 'burp-ui-sql'
|
||||
__author__ = 'Benjamin SANS (Ziirish)'
|
||||
__author_email__ = 'hi+burpui@ziirish.me'
|
||||
__url__ = 'https://git.ziirish.me/ziirish/burp-ui'
|
||||
__description__ = ('Burp-UI is a web-ui for burp backup written in python with '
|
||||
'Flask and jQuery/Bootstrap')
|
||||
__license__ = 'BSD 3-clause'
|
||||
|
||||
ROOT = os.path.join(os.path.dirname(os.path.realpath(__file__)))
|
||||
if os.path.exists(os.path.join(ROOT, 'VERSION')):
|
||||
__version__ = open(os.path.join(ROOT, 'VERSION')).read().rstrip()
|
||||
else:
|
||||
__version__ = '0.5.1'
|
||||
|
|
@ -1,59 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
import sys
|
||||
import shutil
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
# only used to build the package
|
||||
ROOT = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', '..')
|
||||
|
||||
if os.path.exists(os.path.join(ROOT, 'burpui', 'VERSION')):
|
||||
shutil.copyfile(os.path.join(ROOT, 'burpui', 'VERSION'), 'burpui_sql/VERSION')
|
||||
|
||||
readme = """
|
||||
Burp-UI Meta package for SQL requirements
|
||||
"""
|
||||
|
||||
from burpui_sql import __author__, __author_email__, __description__, \
|
||||
__url__, __title__, __version__, __license__
|
||||
name = __title__
|
||||
author = __author__
|
||||
author_email = __author_email__
|
||||
description = __description__
|
||||
url = __url__
|
||||
version = __version__
|
||||
license = __license__
|
||||
|
||||
setup(
|
||||
name=name,
|
||||
packages=find_packages(),
|
||||
version=version,
|
||||
description=description,
|
||||
long_description=readme,
|
||||
license=license,
|
||||
author=author,
|
||||
author_email=author_email,
|
||||
url=url,
|
||||
keywords='burp web ui backup monitoring',
|
||||
install_requires=[
|
||||
'burp-ui>={}'.format(version),
|
||||
'Flask-SQLAlchemy',
|
||||
'Flask-Migrate>=2.0.1',
|
||||
'sqlalchemy-utils'
|
||||
],
|
||||
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',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Topic :: System :: Archiving :: Backup',
|
||||
'Topic :: System :: Monitoring',
|
||||
]
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue