remove unused meta-packages

This commit is contained in:
ziirish 2018-05-02 16:43:22 +02:00
parent 607d605aa5
commit 881c7e425b
No known key found for this signature in database
GPG key ID: 72DB229A64B54E46
12 changed files with 0 additions and 265 deletions

View file

@ -1,2 +0,0 @@
include README
graft burpui_extra

View file

@ -1 +0,0 @@
Burp-UI Meta package for extra requirements

View file

@ -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'

View file

@ -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',
]
)

View file

@ -1,2 +0,0 @@
include README
graft burpui_ldap

View file

@ -1 +0,0 @@
Burp-UI Meta package for ldap requirements

View file

@ -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'

View file

@ -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',
]
)

View file

@ -1,2 +0,0 @@
include README
graft burpui_sql

View file

@ -1 +0,0 @@
Burp-UI Meta package for SQL requirements

View file

@ -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'

View file

@ -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',
]
)