mirror of
https://github.com/projectatomic/atomic.git
synced 2026-02-06 03:45:28 +01:00
Switch from setuptools to distutils for setup which by
default will not build things into eggs. Rather it will
install into PYDIR/site-apackages/<package>. This makes
debugging easier particularily on the Atomic environments.
22 lines
715 B
Python
22 lines
715 B
Python
#!/usr/bin/env python
|
|
|
|
# Author: Dan Walsh <dwalsh@redhat.com>
|
|
from distutils.core import setup
|
|
import Atomic as _Atomic
|
|
|
|
with open('requirements.txt') as f:
|
|
requirements = f.read().splitlines()
|
|
|
|
setup(
|
|
name="atomic", scripts=["atomic", "atomic_dbus.py"],
|
|
version = _Atomic.__version__,
|
|
author = _Atomic.__author__,
|
|
author_email = _Atomic.__author_email__,
|
|
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"])]
|
|
)
|