mirror of
https://github.com/projectatomic/atomic.git
synced 2026-02-06 03:45:28 +01:00
26 lines
834 B
Python
26 lines
834 B
Python
#!/usr/bin/env python
|
|
|
|
# Author: Dan Walsh <dwalsh@redhat.com>
|
|
import sys
|
|
import os
|
|
from setuptools import setup
|
|
|
|
sys.path.insert(0, os.path.abspath(os.getcwd()))
|
|
from Atomic import __version__
|
|
|
|
with open('requirements.txt') as f:
|
|
requirements = f.read().splitlines()
|
|
|
|
setup(
|
|
name="atomic", scripts=["atomic", "atomic_dbus.py"], version=__version__,
|
|
description="Atomic Management Tool",
|
|
author="Daniel Walsh", author_email="dwalsh@redhat.com",
|
|
packages=["Atomic"],
|
|
install_requires=requirements,
|
|
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"])]
|
|
)
|