Changeset - f603d4b1e1b0
[Not reviewed]
default
0 1 0
Dennis Fink - 10 years ago 2015-07-12 02:14:34
dennis.fink@c3l.lu
Added jsonschema to requirements
1 file changed with 6 insertions and 1 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
 
@@ -12,14 +12,19 @@ setup(
 
    version='0.0.1',
 
    url=None,
 
    license='GPLv3+',
 
    author='Dennis Fink',
 
    author_email='dennis.fink@c3l.lu',
 
    description='spaceapi endpoint for c3l.lu',
 
    packages=packages,
 
    package_data={
 
        'spaceapi.templates': ['*'],
 
        'spaceapi.static': ['*'],
 
        'spaceapi.schema': ['*'],
 
    },
 
    install_requires=['Flask', 'Flask-HTTPAuth', 'Flask-Bootstrap']
 
    install_requires=[
 
        'Flask',
 
        'Flask-HTTPAuth',
 
        'Flask-Bootstrap',
 
        'jsonschema',
 
    ]
 
)
0 comments (0 inline, 0 general)