Erik Grinaker is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

erikg / Revelation

Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.

Clone this repository (size: 2.1 MB): HTTPS / SSH
hg clone https://bitbucket.org/erikg/revelation
hg clone ssh://hg@bitbucket.org/erikg/revelation

Revelation / setup.py

commit
7d9375f894bb
parent
f4e8220f0a3a
branch
default
tags
revelation-0.3.1

set release date

1
cea4127a11c0
#!/usr/bin/env python
2
dc69203e823e
# $Id$
3
cea4127a11c0
4
cea4127a11c0
from distutils.core import setup
5
cea4127a11c0
import sys, os
6
cea4127a11c0
7
cea4127a11c0
setup(
8
cea4127a11c0
	name		= 'Revelation',
9
f5321aba18db
	version		= '0.3.1',
10
cea4127a11c0
	description	= 'Password manager for GNOME 2',
11
cea4127a11c0
	author		= 'Erik Grinaker',
12
b181693cfdc7
	author_email	= 'erikg@codepoet.no',
13
5c5c063d3896
	url		= 'http://oss.codepoet.no/revelation/',
14
cea4127a11c0
15
050afdb709b9
	packages	= [ 'revelation', 'revelation.datahandler' ],
16
cea4127a11c0
	package_dir	= { 'revelation' : 'src/lib' },
17
cea4127a11c0
18
cea4127a11c0
	scripts		= [ 'src/revelation' ],
19
cea4127a11c0
20
cea4127a11c0
	data_files	= [
21
cea4127a11c0
				( 'share/pixmaps', [
22
cea4127a11c0
					'pixmaps/revelation.png'
23
cea4127a11c0
				] ),
24
cea4127a11c0
25
cea4127a11c0
				( 'share/revelation/pixmaps', [
26
cea4127a11c0
					'pixmaps/account-creditcard.png',
27
cea4127a11c0
					'pixmaps/account-cryptokey.png',
28
cea4127a11c0
					'pixmaps/account-database.png',
29
cea4127a11c0
					'pixmaps/account-door.png',
30
cea4127a11c0
					'pixmaps/account-email.png',
31
cea4127a11c0
					'pixmaps/account-ftp.png',
32
cea4127a11c0
					'pixmaps/account-generic.png',
33
cea4127a11c0
					'pixmaps/account-phone.png',
34
cea4127a11c0
					'pixmaps/account-shell.png',
35
cea4127a11c0
					'pixmaps/account-website.png',
36
cea4127a11c0
					'pixmaps/folder.png',
37
cea4127a11c0
					'pixmaps/folder-open.png',
38
cea4127a11c0
					'pixmaps/password.png',
39
cea4127a11c0
					'pixmaps/revelation.png',
40
cea4127a11c0
					'pixmaps/revelation-16x16.png'
41
cea4127a11c0
				] ),
42
cea4127a11c0
43
cea4127a11c0
				( 'share/applications', [
44
cea4127a11c0
					'gnome/revelation.desktop'
45
cea4127a11c0
				] ),
46
cea4127a11c0
47
cea4127a11c0
				( '/etc/gconf/schemas', [
48
cea4127a11c0
					'gnome/revelation.schemas'
49
cea4127a11c0
				] )
50
cea4127a11c0
			]
51
cea4127a11c0
)
52
cea4127a11c0