summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: afd2efc1d517e7a00a6eef1fa5311e33676d4494 (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.bues.ch/pwman.git",
	py_modules	= [ "libpwman", "cryptsql", ],
	scripts		= [ "pwman", ]
)
bues.ch cgit interface