Get this repo working again
Start to get this program working by cleaning up the requirements files, setup.cfg, tox.ini and more! Change-Id: I59daf80335f0c186f9a0f66d3539e86703007bfc
This commit is contained in:
parent
ea9a848e8e
commit
b1ae45c46c
@ -3,4 +3,4 @@ branch = True
|
|||||||
source = nerd-reviewer
|
source = nerd-reviewer
|
||||||
|
|
||||||
[report]
|
[report]
|
||||||
ignore-errors = True
|
ignore_errors = True
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
[gerrit]
|
[gerrit]
|
||||||
host=review.openstack.org
|
host=review.openstack.org
|
||||||
port=29418
|
port=29418
|
||||||
project=stackforge/nerd-reviewer.git
|
project=openstack/nerd-reviewer.git
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
NerdReviewer - automates dull daily routine code reviews
|
NerdReviewer - automates dull daily routine code reviews
|
||||||
========================================================
|
========================================================
|
||||||
|
|
||||||
|
|
||||||
Nerd Code Reviewer analyzes commits and tell authors where and why they
|
Nerd Code Reviewer analyzes commits and tell authors where and why they
|
||||||
code won't pass human code review process.
|
code won't pass human code review process.
|
||||||
|
|
||||||
@ -9,7 +8,6 @@ Such automation optimizes work on open source projects and simplifies life
|
|||||||
of new contributors, because they will get interactive step by step guide
|
of new contributors, because they will get interactive step by step guide
|
||||||
how to make their patches attractive for project's maintainers.
|
how to make their patches attractive for project's maintainers.
|
||||||
|
|
||||||
|
|
||||||
.. image:: doc/source/images/american_gothic.jpg
|
.. image:: doc/source/images/american_gothic.jpg
|
||||||
:alt: American Gothic
|
:alt: American Gothic
|
||||||
:width: 650 px
|
:width: 650 px
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
# The order of packages is significant, because pip processes them in the order
|
# The order of packages is significant, because pip processes them in the order
|
||||||
# of appearance. Changing the order has an impact on the overall integration
|
# of appearance. Changing the order has an impact on the overall integration
|
||||||
# process, which may cause wedges in the gate later.
|
# process, which may cause wedges in the gate later.
|
||||||
jsonschema>=2.0.0,<3.0.0
|
|
||||||
netaddr>=0.7.12
|
pbr>=1.6 # Apache-2.0
|
||||||
pbr>=0.6,!=0.7,<1.0
|
jsonschema>=2.0.0,<3.0.0,!=2.5.0 # MIT
|
||||||
|
netaddr>=0.7.12,!=0.7.16 # BSD
|
||||||
PyYAML>=3.1.0
|
PyYAML>=3.1.0
|
||||||
SQLAlchemy>=0.9.7,<=0.9.99
|
sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3 # BSD
|
||||||
sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3
|
|
||||||
six>=1.9.0
|
six>=1.9.0
|
||||||
gerritlib
|
|
||||||
|
@ -4,17 +4,17 @@ version = 0.0.1
|
|||||||
summary = Nerd Reviewer - automates dull daily routine code reviews
|
summary = Nerd Reviewer - automates dull daily routine code reviews
|
||||||
description-file =
|
description-file =
|
||||||
README.rst
|
README.rst
|
||||||
author = Boris Pavlovic
|
author = OpenStack
|
||||||
author-email = boris@pavlovic.me
|
author-email = openstack-dev@lists.openstack.org
|
||||||
home-page = http://boris-42.me
|
home-page = http://www.openstack.org/
|
||||||
classifier =
|
classifier =
|
||||||
Intended Audience :: Developers
|
Intended Audience :: Developers
|
||||||
Intended Audience :: Information Technology
|
Intended Audience :: Information Technology
|
||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Operating System :: POSIX :: Linux
|
Operating System :: POSIX :: Linux
|
||||||
|
Environment :: OpenStack
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 2
|
Programming Language :: Python :: 2
|
||||||
Programming Language :: Python :: 2.6
|
|
||||||
Programming Language :: Python :: 2.7
|
Programming Language :: Python :: 2.7
|
||||||
Programming Language :: Python :: 3.4
|
Programming Language :: Python :: 3.4
|
||||||
|
|
||||||
@ -23,7 +23,6 @@ packages =
|
|||||||
nerdreviewer
|
nerdreviewer
|
||||||
|
|
||||||
[entry_points]
|
[entry_points]
|
||||||
|
|
||||||
console_scripts =
|
console_scripts =
|
||||||
nerd-reviewer = nerdreviwer.cmd.main:main
|
nerd-reviewer = nerdreviwer.cmd.main:main
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
# The order of packages is significant, because pip processes them in the order
|
# The order of packages is significant, because pip processes them in the order
|
||||||
# of appearance. Changing the order has an impact on the overall integration
|
# of appearance. Changing the order has an impact on the overall integration
|
||||||
# process, which may cause wedges in the gate later.
|
# process, which may cause wedges in the gate later.
|
||||||
hacking>=0.9.2,<0.10
|
|
||||||
|
|
||||||
coverage>=3.6
|
hacking>=0.10.2,<0.11 # Apache-2.0
|
||||||
|
|
||||||
|
coverage>=3.6 # Apache-2.0
|
||||||
discover
|
discover
|
||||||
mock>=1.0
|
mock>=1.2
|
||||||
testrepository>=0.0.18
|
testrepository>=0.0.18 # Apache-2.0/BSD
|
||||||
testtools>=0.9.36,!=1.2.0
|
testtools>=1.4.0 # MIT
|
||||||
|
|
||||||
oslosphinx>=2.2.0 # Apache-2.0
|
oslosphinx>=2.5.0,!=3.4.0 # Apache-2.0
|
||||||
oslotest>=1.2.0 # Apache-2.0
|
oslotest>=1.10.0 # Apache-2.0
|
||||||
|
3
tox.ini
3
tox.ini
@ -1,14 +1,13 @@
|
|||||||
[tox]
|
[tox]
|
||||||
minversion = 1.6
|
minversion = 1.6
|
||||||
skipsdist = True
|
skipsdist = True
|
||||||
envlist = py26,py27,py33,py34,pep8
|
envlist = py27,py34,pep8
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
setenv = VIRTUAL_ENV={envdir}
|
setenv = VIRTUAL_ENV={envdir}
|
||||||
LANG=en_US.UTF-8
|
LANG=en_US.UTF-8
|
||||||
LANGUAGE=en_US:en
|
LANGUAGE=en_US:en
|
||||||
LC_ALL=C
|
LC_ALL=C
|
||||||
PYTHONHASHSEED=0
|
|
||||||
deps = -r{toxinidir}/requirements.txt
|
deps = -r{toxinidir}/requirements.txt
|
||||||
-r{toxinidir}/test-requirements.txt
|
-r{toxinidir}/test-requirements.txt
|
||||||
install_command = pip install -U {opts} {packages}
|
install_command = pip install -U {opts} {packages}
|
||||||
|
Loading…
Reference in New Issue
Block a user