[devops] Reorganized structure; added setup.py
This commit is contained in:
parent
e8be159d3c
commit
1ba30587e5
3
devops/.gitignore
vendored
Normal file
3
devops/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
build
|
||||
dist
|
||||
MANIFEST
|
4
devops/scripts/devops
Executable file
4
devops/scripts/devops
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
|
||||
exec python -m devops "$@"
|
||||
|
12
devops/setup.py
Normal file
12
devops/setup.py
Normal 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']
|
||||
)
|
||||
|
@ -1,5 +1,5 @@
|
||||
import unittest
|
||||
from . import scancodes
|
||||
from devops import scancodes
|
||||
|
||||
class TestScancodes(unittest.TestCase):
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
from . import xml
|
||||
from devops import xml
|
||||
import unittest
|
||||
|
||||
class TestXml(unittest.TestCase):
|
Loading…
Reference in New Issue
Block a user