File: setup.py

package info (click to toggle)
python-dhm 0.5-2.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 136 kB
  • ctags: 199
  • sloc: python: 966; makefile: 28
file content (14 lines) | stat: -rwxr-xr-x 344 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python

from distutils.core import setup

setup(	name		= "dhm",
	version		= "0.5",
	author		= "Wichert Akkerman",
	author_email	= "wichert@deephackmode.org",
	license		= "GPL version 2",
	description	= "DeepHackMode python tools",
	packages	= [ "dhm" ],
	package_dir	= { "dhm" : "src" },
	keywords	= [ "SQL", "LDAP", "utility" ],
	)