mirror of
https://github.com/projectatomic/atomic.git
synced 2026-02-05 18:45:01 +01:00
Also cleanup setup.py to handle most of the setup. setup handles python3 issues better then standard Makefile
10 lines
559 B
Python
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"])])
|
|
|