summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 486164486bea7c02acb9bf248321874428189f99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

from distutils.core import setup

setup(name="Bcfg2.Server",
      version="0.2",
      description="Bcfg2 Server",
      author="Narayan Desai",
      author_email="desai@mcs.anl.gov",
      packages=["Bcfg2", 'Bcfg2.Server', "Bcfg2.Server.Generators", "Bcfg2.Server.Structures", "Bcfg2.Client"],
      package_dir = {'Bcfg2':'src/lib'}, 
      scripts = ['src/sbin/Bcfg2Server', 'src/sbin/bcfg2']
     )