add setuptools and a wsgi script too :)

This commit is contained in:
Andy Williams 2016-09-17 22:59:44 +01:00
parent 348c83524b
commit 9366f744ec
4 changed files with 26 additions and 1 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 *

View File

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

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