Commit | Line | Data |
---|---|---|
50f434d1 | 1 | #!/usr/bin/python3 |
1bb46303 FT |
2 | |
3 | from distutils.core import setup | |
4 | ||
a57b99af | 5 | setup(name = "pdm3", |
1bb46303 FT |
6 | version = "0.1", |
7 | description = "Python daemon management library", | |
8 | author = "Fredrik Tolf", | |
9 | author_email = "fredrik@dolda2000.com", | |
10 | # url = "http://www.dolda2000.com/~fredrik/pdm/", | |
11 | packages = ["pdm"], | |
12 | scripts = ["pdm-repl"], | |
13 | license = "GPL-3") |