File: setup.py

package info (click to toggle)
python-keyczar 0.6~b.061709-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 776 kB
  • ctags: 389
  • sloc: python: 1,497; makefile: 11
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)'],
)