bring master back to release

This commit is contained in:
Andy Williams 2016-09-17 23:04:02 +01:00
commit 5dc7b47409
26 changed files with 35 additions and 2 deletions

6
.gitignore vendored
View File

@ -1 +1,7 @@
env
build
dist
Extra_Server.egg-info
extra/__pycache__

3
MANIFEST.in Normal file
View File

@ -0,0 +1,3 @@
recursive-include extra/assets *
recursive-include extra/static *
recursive-include extra/templates *

2
extra.wsgi Normal file
View File

@ -0,0 +1,2 @@
from extra import app as application

View File

@ -2,7 +2,7 @@ from flask import Flask, Response
from flask import abort, render_template, send_from_directory
from flask_restful import Resource, Api, abort as api_abort
from app.data import THEMES, BACKGROUNDS
from extra.data import THEMES, BACKGROUNDS
import csv
import io

View File

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 48 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Binary file not shown.

View File

Before

Width:  |  Height:  |  Size: 888 KiB

After

Width:  |  Height:  |  Size: 888 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 895 KiB

View File

Before

Width:  |  Height:  |  Size: 924 KiB

After

Width:  |  Height:  |  Size: 924 KiB

View File

@ -9,6 +9,12 @@ THEMES = {
'theme_id': 'blingbling',
'name': 'Bling',
'author': 'netstar',
'version': 2
},
'detourious': {
'theme_id': 'detourious',
'name': 'Detourious',
'author': 'jeffdameth',
'version': 1
},
'vulcan-retro': {

2
run.py
View File

@ -1,5 +1,5 @@
#!/usr/bin/env python
# Run a test server.
from app import app
from extra import app
app.run(host='0.0.0.0', port=8080, debug=False)

16
setup.py Normal file
View File

@ -0,0 +1,16 @@
from setuptools import setup
setup(
name='Extra Server',
version='1.0',
long_description=__doc__,
packages=['extra'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask>=0.11.1',
'Flask-RESTful>=0.3.5'
]
)