1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
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.24',
url='http://github.com/mitsuhiko/itsdangerous',
py_modules=['itsdangerous'],
description='Various helpers to pass trusted data to '
'untrusted environments and back.',
zip_safe=False,
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)
|