1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-05 18:45:01 +01:00
Files
atomic/setup.py
Dan Walsh 536349ae04 Move the Atomic class into python library directory.
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.
2015-05-14 11:30:17 -04:00

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"])