mirror of
https://github.com/projectatomic/atomic.git
synced 2026-02-05 18:45:01 +01:00
8 lines
266 B
Python
8 lines
266 B
Python
#!/usr/bin/env python
|
|
|
|
# Author: Dan Walsh <dwalsh@redhat.com>
|
|
import os
|
|
from distutils.core import setup
|
|
|
|
setup(name = "atom", scripts=["atom"], version="1.0", description="Atomic Container Management Tool", author="Daniel Walsh", author_email="dwalsh@redhat.com")
|