File: setup.py

package info (click to toggle)
flask-paranoid 0.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 124 kB
  • sloc: python: 99; makefile: 3
file content (38 lines) | stat: -rw-r--r-- 1,052 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
Flask-Paranoid
--------------

Simple user session protection.
"""
from setuptools import setup


setup(
    name='Flask-Paranoid',
    version='0.2.0',
    url='http://github.com/miguelgrinberg/flask-paranoid/',
    license='MIT',
    author='Miguel Grinberg',
    author_email='miguelgrinberg50@gmail.com',
    description=('Simple user session protection'),
    long_description=__doc__,
    packages=['flask_paranoid'],
    zip_safe=False,
    include_package_data=True,
    platforms='any',
    install_requires=[
        'Flask>=0.10',
    ],
    #test_suite="tests",
    classifiers=[
        'Environment :: Web Environment',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 3',
        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
        'Topic :: Software Development :: Libraries :: Python Modules'
    ]
)