blob: 11c0c4515fdf8fbb66dacd55ecd67a7ca23d042f (
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.16',
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'
]
)
|