File: setup.py

package info (click to toggle)
securestring 0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 68 kB
  • sloc: ansic: 54; python: 14; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 533 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- encoding: utf-8 -*-

try:
    from setuptools import setup, Extension
except ImportError:
    from distutils.core import setup, Extension

setup(
    name='SecureString',
    version='0.2',
    description='Clears the contents of strings containing cryptographic material',
    author=u'András Veres-Szentkirályi, Lawrence Fan',
    author_email='vsza@vsza.hu, fanl3@rpi.edu',
    url='https://github.com/dnet/pysecstr',
    license='MIT',
    ext_modules=[Extension('SecureString', ['pysecstr.c'], libraries=['crypto'])],
)