File: setup.py

package info (click to toggle)
python-itsdangerous 0.24%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 244 kB
  • ctags: 224
  • sloc: python: 811; makefile: 166
file content (22 lines) | stat: -rw-r--r-- 608 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
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',
    ],
)