mirror of
https://github.com/projectatomic/atomic.git
synced 2026-02-05 18:45:01 +01:00
I am beginning to work on dbus bindings, this will allow the atomic cli and the atomic_dbus_server app to share the same code. Renamed atomicpulp to Atomic in the python library.
8 lines
281 B
Python
8 lines
281 B
Python
#!/usr/bin/env python
|
|
|
|
# Author: Dan Walsh <dwalsh@redhat.com>
|
|
import os
|
|
from distutils.core import setup
|
|
|
|
setup(name = "atomic", scripts=["atomic"], version="1.0", description="Atomic Management Tool", author="Daniel Walsh", author_email="dwalsh@redhat.com", packages=["Atomic"])
|