mirror of
https://github.com/projectatomic/atomic.git
synced 2026-02-06 03:45:28 +01:00
8 lines
260 B
Python
8 lines
260 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")
|