summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: b5bda05f8a823fe473bf91da1e5f4e85928e1daa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

from distutils.core import setup
from libpwman import VERSION

setup(
	name		= "pwman",
	version		= "%d" % VERSION,
	description	= "Lightweight password manager",
	author		= "Michael Buesch",
	author_email	= "m@bues.ch",
	url		= "git://git.bu3sch.de/pwman.git",
	py_modules	= [ "libpwman", "cryptsql", ],
	scripts		= [ "pwman", "pwman-import-pwmanager", ]
)
bues.ch cgit interface