fix missing requirements
This commit is contained in:
parent
dcb0cc04e8
commit
2923780870
2 changed files with 2 additions and 5 deletions
|
@ -16,8 +16,6 @@ from SWSCloudWeb.views.compute.containers import viewContainers
|
|||
from SWSCloudWeb.views.compute.vms import viewVMs
|
||||
from SWSCloudWeb.views.payments import viewPayments
|
||||
from SWSCloudWeb.views.support import viewSupport
|
||||
from SWSCloudWeb.views.support.documents import viewDocuments
|
||||
from SWSCloudWeb.views.support.kb import viewKB
|
||||
from SWSCloudWeb.views.tasks import viewTasks
|
||||
|
||||
app = Flask(__name__, static_folder='static', static_url_path='')
|
||||
|
@ -31,8 +29,6 @@ babel = Babel(app)
|
|||
# /
|
||||
app.register_blueprint(viewHomepage)
|
||||
app.register_blueprint(viewSupport)
|
||||
app.register_blueprint(viewKB)
|
||||
app.register_blueprint(viewDocuments)
|
||||
# /tasks
|
||||
app.register_blueprint(viewTasks)
|
||||
# /compute
|
||||
|
|
3
setup.py
3
setup.py
|
@ -4,7 +4,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='SWSCloudCore',
|
||||
version='2.7.2',
|
||||
version='2.7.3',
|
||||
author='Vyacheslav Anzhiganov',
|
||||
author_email='hello@anzhiganov.com',
|
||||
packages=[
|
||||
|
@ -160,5 +160,6 @@ setup(
|
|||
'uWSGI==2.0.11.1',
|
||||
'wsgiref==0.1.2',
|
||||
'sshpubkeys==1.0.6',
|
||||
'dateutils',
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue