[devops] Reorganized structure; added setup.py

This commit is contained in:
Maxim Kulkin 2012-06-06 18:47:56 +04:00
parent e8be159d3c
commit 1ba30587e5
8 changed files with 21 additions and 2 deletions

3
devops/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
build
dist
MANIFEST

4
devops/scripts/devops Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
exec python -m devops "$@"

12
devops/setup.py Normal file
View File

@ -0,0 +1,12 @@
from distutils.core import setup
setup(
name='devops',
version='0.1',
description='Library to aid creating and manipulating virtual environments',
author='Mirantis, Inc.',
author_email='product@mirantis.com',
packages=['devops'],
scripts=['scripts/devops']
)

View File

@ -1,5 +1,5 @@
import unittest
from . import scancodes
from devops import scancodes
class TestScancodes(unittest.TestCase):

View File

@ -1,5 +1,5 @@
from . import xml
from devops import xml
import unittest
class TestXml(unittest.TestCase):