1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-05 18:45:01 +01:00
Files
atomic/setup.py
Dan Walsh 735ab7b6b5 Rename atomic_server.py to atomic_dbus.py
Also cleanup setup.py to handle most of the setup.
setup handles python3 issues better then standard Makefile
2015-07-13 08:30:33 -04:00

10 lines
559 B
Python

#!/usr/bin/env python
# Author: Dan Walsh <dwalsh@redhat.com>
import os
from distutils.core import setup
VERSION="1.0"
setup(name = "atomic", scripts=["atomic", "atomic_dbus.py"], version=VERSION, description="Atomic Management Tool", author="Daniel Walsh", author_email="dwalsh@redhat.com", packages=["Atomic"], data_files=[('/etc/dbus-1/system.d/', ["org.atomic.conf"]), ('/usr/share/dbus-1/system-services', ["org.atomic.service"]), ('/usr/share/polkit-1/actions/', ["org.atomic.policy"]),("/usr/share/bash-completion/completions/", ["bash/atomic"])])