File: setup.py

package info (click to toggle)
assword 0.8-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 176 kB
  • ctags: 110
  • sloc: sh: 896; python: 522; makefile: 27
file content (22 lines) | stat: -rwxr-xr-x 506 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python

from distutils.core import setup

setup(
    name = 'assword',
    version = '0.8',
    description = 'Secure password management and retrieval system.',
    author = 'Jameson Rollins',
    author_email = 'jrollins@finestructure.net',
    url = 'http://finestructure.net/assword',
    py_modules = ['assword'],
    scripts = ['assword'],
    requires = [
        'gpgme',
        'getpass',
        'json',
        'base64',
        'gtk2',
        'pkg_resources',
        ],
    )