File: setup.py

package info (click to toggle)
python-keyczar 0.6~b.061709%2Bsvn502-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 712 kB
  • sloc: python: 1,496; sh: 34; makefile: 27
file content (14 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from distutils.core import setup

import sys

setup(name='python-keyczar',
      description='Toolkit for safe and simple cryptography',
      author='Arkajit Dey',
      author_email='arkajit.dey@gmail.com',
      url='http://www.keyczar.org/',
      version='0.6b',
      packages=['keyczar'],
      package_dir={'keyczar': 'src/keyczar'},
      requires=['pycrypto (>2.0)'],
)