Re-enabled project URL.
[pdm.git] / setup.py
CommitLineData
1bb46303
FT
1#!/usr/bin/python
2
3from distutils.core import setup
4
5setup(name = "pdm",
71546ade 6 version = "0.2",
1bb46303
FT
7 description = "Python daemon management library",
8 author = "Fredrik Tolf",
9 author_email = "fredrik@dolda2000.com",
6da1155c 10 url = "http://www.dolda2000.com/~fredrik/pdm/",
1bb46303
FT
11 packages = ["pdm"],
12 scripts = ["pdm-repl"],
13 license = "GPL-3")