Rename old Nomad files to Cyborg
Replace nomad with cyborg in the skeleton, also update test-requirement.txt Change-Id: I2b3f54f2591facc6bab7ab8f41fb8c9919b01845
This commit is contained in:
parent
ad55599f84
commit
43e717bd9e
@ -14,4 +14,4 @@ Pull requests submitted through GitHub will be ignored.
|
||||
|
||||
Bugs should be filed on Launchpad, not GitHub:
|
||||
|
||||
https://bugs.launchpad.net/nomad
|
||||
https://bugs.launchpad.net/openstack-cyborg
|
||||
|
@ -1,4 +1,4 @@
|
||||
nomad Style Commandments
|
||||
cyborg Style Commandments
|
||||
===============================================
|
||||
|
||||
Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/
|
||||
|
@ -1,5 +1,5 @@
|
||||
===============================
|
||||
nomad
|
||||
cyborg
|
||||
===============================
|
||||
|
||||
Distributed Acceleration Management as a Service
|
||||
|
@ -13,16 +13,16 @@
|
||||
# under the License.
|
||||
|
||||
"""
|
||||
test_nomad
|
||||
test_cyborg
|
||||
----------------------------------
|
||||
|
||||
Tests for `nomad` module.
|
||||
Tests for `cyborg` module.
|
||||
"""
|
||||
|
||||
from nomad.tests import base
|
||||
from cyborg.tests import base
|
||||
|
||||
|
||||
class TestNomad(base.TestCase):
|
||||
class TestCyborg(base.TestCase):
|
||||
|
||||
def test_something(self):
|
||||
pass
|
@ -37,7 +37,7 @@ source_suffix = '.rst'
|
||||
master_doc = 'index'
|
||||
|
||||
# General information about the project.
|
||||
project = u'nomad'
|
||||
project = u'cyborg'
|
||||
copyright = u'2013, OpenStack Foundation'
|
||||
|
||||
# If true, '()' will be appended to :func: etc. cross-reference text.
|
||||
|
@ -4,9 +4,9 @@ Installation
|
||||
|
||||
At the command line::
|
||||
|
||||
$ pip install nomad
|
||||
$ pip install cyborg
|
||||
|
||||
Or, if you have virtualenvwrapper installed::
|
||||
|
||||
$ mkvirtualenv nomad
|
||||
$ pip install nomad
|
||||
$ mkvirtualenv cyborg
|
||||
$ pip install cyborg
|
||||
|
@ -2,6 +2,6 @@
|
||||
Usage
|
||||
========
|
||||
|
||||
To use nomad in a project::
|
||||
To use cyborg in a project::
|
||||
|
||||
import nomad
|
||||
import cyborg
|
||||
|
@ -2,4 +2,4 @@
|
||||
# of appearance. Changing the order has an impact on the overall integration
|
||||
# process, which may cause wedges in the gate later.
|
||||
|
||||
pbr>=1.6 # Apache-2.0
|
||||
pbr>=1.8 # Apache-2.0
|
||||
|
16
setup.cfg
16
setup.cfg
@ -1,5 +1,5 @@
|
||||
[metadata]
|
||||
name = nomad
|
||||
name = cyborg
|
||||
summary = Distributed Acceleration Management as a Service
|
||||
description-file =
|
||||
README.rst
|
||||
@ -21,7 +21,7 @@ classifier =
|
||||
|
||||
[files]
|
||||
packages =
|
||||
nomad
|
||||
cyborg
|
||||
|
||||
[build_sphinx]
|
||||
source-dir = doc/source
|
||||
@ -32,15 +32,15 @@ all_files = 1
|
||||
upload-dir = doc/build/html
|
||||
|
||||
[compile_catalog]
|
||||
directory = nomad/locale
|
||||
domain = nomad
|
||||
directory = cyborg/locale
|
||||
domain = cyborg
|
||||
|
||||
[update_catalog]
|
||||
domain = nomad
|
||||
output_dir = nomad/locale
|
||||
input_file = nomad/locale/nomad.pot
|
||||
domain = cyborg
|
||||
output_dir = cyborg/locale
|
||||
input_file = cyborg/locale/cyborg.pot
|
||||
|
||||
[extract_messages]
|
||||
keywords = _ gettext ngettext l_ lazy_gettext
|
||||
mapping_file = babel.cfg
|
||||
output_file = nomad/locale/nomad.pot
|
||||
output_file = cyborg/locale/cyborg.pot
|
||||
|
@ -2,18 +2,22 @@
|
||||
# of appearance. Changing the order has an impact on the overall integration
|
||||
# process, which may cause wedges in the gate later.
|
||||
|
||||
hacking<0.11,>=0.10.2 # Apache-2.0
|
||||
hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0
|
||||
|
||||
coverage>=3.6 # Apache-2.0
|
||||
coverage>=4.0 # Apache-2.0
|
||||
python-subunit>=0.0.18 # Apache-2.0/BSD
|
||||
sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD
|
||||
oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0
|
||||
sphinx!=1.3b1,<1.4,>=1.2.1 # BSD
|
||||
ddt>=1.0.1 # MIT
|
||||
oslosphinx>=4.7.0 # Apache-2.0
|
||||
oslotest>=1.10.0 # Apache-2.0
|
||||
testrepository>=0.0.18 # Apache-2.0/BSD
|
||||
testtools>=1.4.0 # MIT
|
||||
testresources>=0.2.4 # Apache-2.0/BSD
|
||||
testscenarios>=0.4 # Apache-2.0/BSD
|
||||
oslotest>=1.10.0 # Apache-2.0
|
||||
os-testr>=0.4.1 # Apache-2.0
|
||||
tempest-lib>=0.13.0 # Apache-2.0
|
||||
testtools>=1.4.0 # MIT
|
||||
sphinxcontrib-pecanwsme>=0.8 # Apache-2.0
|
||||
sphinxcontrib-seqdiag # BSD
|
||||
reno>=1.8.0 # Apache-2.0
|
||||
os-api-ref>=1.0.0 # Apache-2.0
|
||||
tempest>=12.1.0 # Apache-2.0
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user