summaryrefslogtreecommitdiff
path: root/setup.py
blob: 17532b359cf7a67609028a001f62c6b114300c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup


setup(
    name='itsdangerous',
    author='Armin Ronacher',
    author_email='armin.ronacher@active-4.com',
    version='0.17',
    url='http://github.com/mitsuhiko/itsdangerous',
    py_modules=['itsdangerous'],
    description='Various helpers to pass trusted data to untrusted environments.',
    zip_safe=False,
    classifiers=[
        'License :: OSI Approved :: BSD License',
        'Programming Language :: Python'
    ]
)