summaryrefslogtreecommitdiffstats
path: root/src/setup.py
blob: ad93caccf9ec9382b58d1f705e519c4249122c4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
__revision__ = "setup.py __REVISION__ __DATE__ __DEVELOPER__"

from string import join, split

from distutils.core import setup

setup(name = "scons",
      version = "__VERSION__",
      description = "scons",
      author = "Steven Knight",
      author_email = "knight@baldmt.com",
      url = "http://www.baldmt.com/scons",
      packages = ["scons"],
      scripts = ["scons.py"])