summaryrefslogtreecommitdiff
path: root/setup.cfg
Commit message (Collapse)AuthorAgeFilesLines
* Add Python 3.5 classifier and venvzheng yin2016-07-121-0/+1
| | | | | | | There is a passing gate job, we can claim support for Python 3.5 in the classifier. This patch also adds the convenience py35 venv. Change-Id: I15304210a7f32b719a910e22518d33427ddedbb9
* Update the home-page with developer documentationvenkatamahesh2016-05-171-1/+1
| | | | Change-Id: I570ee3d8963292ebb1c0fef7e7794378c7f08e7e
* Drop py33 supportShu Muto2016-01-071-1/+1
| | | | | | | | | | | | | | | "Python 3.3 support is being dropped since OpenStack Liberty." written in following URL. https://wiki.openstack.org/wiki/Python3 And already the infra team and the oslo team are dropping py33 support from their projects. Since we rely on oslo for a lot of our work, and depend on infra for our CI, we should drop py33 support too. Change-Id: Id80bab700d0535b919be6b8f42e0c1561557e45e Closes-Bug: #1526170
* Remove py26 supportshu-mutou2015-12-151-1/+0
| | | | | | | | | | As of mitaka, the infra team won't have the resources available to reasonably test py26, also the oslo team is dropping py26 support from their libraries. sine we rely on oslo for a lot of our work, and depend on infra for our CI, we should drop py26 support too. Change-Id: I50eff4ea33358791cc4f139b3b369489c38f7e5c Closes-Bug: 1519510
* Add wheels section to the setup.cfgFlavio Percoco2014-06-301-0/+3
| | | | | | | Glance client's setup.cfg was missing the wheels section. This commit adds it and makes the client's setup.cfg consistent with other clients. Change-Id: I16030c0379dae3c3c07bd73f09798c2160310811
* Add missing classifiersFlavio Percoco2014-06-301-0/+2
| | | | | | | | This commit adds 2 more classifiers to setup.cfg. An environment classifier that specifies glanceclient is a console tool and a development classifier that specifies it is production ready. Change-Id: Ia60ea76798503b0a729c384298f1a633d695a1ab
* Add license to setup.cfgFlavio Percoco2014-06-301-0/+1
| | | | | | | | | Glance client's setup.cfg was missing the license attribute. This commit adds it to make it consistent with other clients and server libraries. The value of the license attribute reflects the license in the LICENSE file. Change-Id: Ia2e8c3be4fe7eaf0db5eb397646068c83076c2ff
* Finalize Python3 supportFrederic Lepied2014-05-201-0/+2
| | | | | | | Set the environment variable PYTHONHASHSEED to 0 to have predictive tests under Python 3. Change-Id: Ia15a9383e0f20bd0e4572e9f9b9772f1704dff86
* Migrate to pbr.Monty Taylor2013-05-181-0/+31
| | | | | | Fixes bug 1179007. Change-Id: I99d571bbf37ef53366a96de088c249cb6fd23b0e
* Migrate to testr.Monty Taylor2013-01-161-8/+0
| | | | | | Part of blueprint grizzly-testtools Change-Id: I9a12f0300e2731a6ee0a82e1f9737a6b83aa5d85
* Edit build_sphinx options.Clark Boylan2012-06-081-3/+3
| | | | | | | | | To better facilitate the building and publishing of sphinx documentation by Jenkins we are moving all openstack projects with sphinx documentation to a common doc tree structure. Documentation goes in project/doc/source and build results go in project/doc/build. Change-Id: Idf3e4472f91a1f5ae36e64b339bef99d4d960b88
* Use tox for running tests locally.James E. Blair2012-04-271-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See: http://wiki.openstack.org/ProjectTestingInterface Tox can manage virtualenvs, and is currently doing so for running tests in Jenkins. It's just as, or more, useful for running tests locally, so this starts the migration from the run_tests system to tox. The goal is to reduce duplicate testing infrastructure, and get what's running locally on developer workstations as close to what is run by Jenkins as possible. This patch removes run_tests.py, and the scripts that manage .venv. It makes run_tests.sh call tox to facilitate the transition for developers used to typing "run_tests.sh". Developers will need tox installed on their workstations. It can be installed from PyPI with "pip install tox". run_tests.sh outputs those instructions if tox is not present. New facilities are available using tox directly, including: tox -e py26 # run tests under python 2.6 tox -e py27 # run tests under python 2.7 tox -e pep8 # run pep8 tests tox # run all of the above tox -e venv foo # run the command "foo" inside a virtualenv The configuration of the openstack nose plugin is removed from setup.cfg and added to the nosetests command line arguments in tox. It is used when running tox from the command line, so the enhanced, colorized output is visible to developers running the test suite locally. However, when Jenkins runs tox, the xunit plugin will be used instead, providing output natively understood by jenkins which is much more readable in that context. Change-Id: Id678c2fb8a5a7d79c680d3d1f2f12141f73dc8a6
* All the latest OpenStack hotness.Monty Taylor2012-02-291-0/+7
|
* Initial checkin for new CLI and client packageJay Pipes2012-02-291-0/+13
Copied mostly from python-keystoneclient with some Glance-specific stuff. README.rst shows what WILL be the way to do things, not what is currently coded :)