2015-01-14 17:10:00 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
|
|
# Author: Dan Walsh <dwalsh@redhat.com>
|
2015-11-04 13:12:15 -06:00
|
|
|
from distutils.core import setup
|
|
|
|
|
import Atomic as _Atomic
|
2015-08-10 23:49:27 +05:30
|
|
|
|
2015-08-11 00:10:36 +05:30
|
|
|
with open('requirements.txt') as f:
|
|
|
|
|
requirements = f.read().splitlines()
|
|
|
|
|
|
2015-07-13 11:21:25 -04:00
|
|
|
setup(
|
2015-08-25 13:19:28 +05:30
|
|
|
name="atomic", scripts=["atomic", "atomic_dbus.py"],
|
2016-03-08 20:21:34 +05:30
|
|
|
version=_Atomic.__version__,
|
|
|
|
|
author=_Atomic.__author__,
|
|
|
|
|
author_email=_Atomic.__author_email__,
|
2016-11-23 15:14:14 -06:00
|
|
|
packages=["Atomic", "Atomic/backends", "Atomic/objects"],
|
2015-07-29 15:50:36 -04:00
|
|
|
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"])]
|
|
|
|
|
)
|