summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Added support for Amazon Cognito.kyleknap2014-09-121-1/+2
| | | | Includes support for both Amazon Cognito Sync and Amazon Cognito Identity.
* Add support for Amazon Route 53 Domains.kyleknap2014-09-111-1/+2
|
* Remove redundant __future__ importsNico Revin2014-08-031-1/+1
| | | | See https://docs.python.org/2/reference/simple_stmts.html#future
* Merge branch 'release-2.31.0' into developDaniel G. Taylor2014-07-101-1/+1
|\ | | | | | | | | Conflicts: setup.py
| * Add support of Amazon CloudWatch LogsDaniel G. Taylor2014-07-091-1/+1
| | | | | | | | | | | | Conflicts: docs/source/index.rst setup.py
* | Update trove classifiersDaniel G. Taylor2014-07-021-2/+4
| |
* | Initial work to support Python 3.3+Daniel G. Taylor2014-06-271-5/+5
|/ | | | | | | | | | | | | | | | | This updates most of the code to be forward-compatible with Python 3.3 and 3.4 while still continuing to support 2.6 and 2.7. It **drops** support for Python 2.5. Python 3 support is added for common Boto modules (`boto/*.py`) as well as S3, SQS, Kinesis and CloudTrail. Several other modules may work but have not been thoroughly tested. The `tox` configuration has been updated to run tests for all supported environments, and for now a whitelist is used for Python 3 unit tests. A new porting guide is included to help community members port other modules to Python 3, and both the README and Sphinx index list which modules currently support Python 3.
* CloudSearch2 updatesDaniel G. Taylor2014-04-171-1/+2
| | | | | | | | | | | | Changes the following: * Generated layer1.py from service model * Layer1 -> CloudSearchConnection * Layer1 now uses JSON instead of XML responses * Updated layer2 objects to use JSON and generated layer1 * Updated doc service to remove attributes which are no longer valid * Updated search service to remove attributes which are no longer valid and modify existing attributes which have changed * Updated unit tests and integration tests for all of the above
* Added ``boto.rds2``.Daniel Lindsley2014-02-121-1/+1
|
* Started change to load endpoints from JSON.Daniel Lindsley2014-01-281-1/+4
| | | This is just SNS/SES for the moment, for purposes of getting early review feedback. Still needs tests & docs, plus integration into the rest of the services.
* Merge branch 'kinesis' into develop. Add support for Amazon KinesisDaniel G. Taylor2013-12-121-1/+1
|\ | | | | | | | | | | Conflicts: boto/__init__.py setup.py
| * Add support for Amazon KinesisDaniel G. Taylor2013-11-251-1/+2
| |
* | Add support for AWS Direct ConnectDaniel G. Taylor2013-12-051-1/+2
|/
* Add CloudTrail generated documentation for Sphinx, make sure CloudTrail gets ↵Daniel G. Taylor2013-11-131-1/+1
| | | | installed with setup.py and a few minor fixes.
* Add boto.support to setup.pyJames Saryerwinnie2013-04-301-1/+1
|
* Added underlying DynamoDB v2 support.Daniel Lindsley2013-04-171-1/+2
|
* Add redshift to setup.py/docs indexJames Saryerwinnie2013-04-171-1/+1
|
* Adding boto.opsworks to setup.py.Mitch Garnaat2013-03-071-1/+1
|
* Added dynamodb_dump/dynamodb_load to the list of scripts in setup.py.Max Noel2013-02-251-1/+2
|
* Add support for Amazon Elastic TranscoderJames Saryerwinnie2013-01-281-1/+2
|
* Update boto metadata for elasticacheJames Saryerwinnie2013-01-171-1/+1
| | | | | | | | Includes: * including in package list for setup.py * generating API docs * adding service to README
* Adding datapipeline to list of modules.Mitch Garnaat2013-01-101-1/+1
|
* Adding new mturk CLI to setup.py. Related to #1131.Mitch Garnaat2012-12-021-1/+1
|
* s3put s3multiput: Merge multiput functionality into s3putAnton Lundin2012-10-241-2/+2
|
* Merge branch 'setup-file-close' of git://github.com/crosspop/boto into ↵Mitch Garnaat2012-10-141-1/+7
|\ | | | | | | crosspop-setup-file-close
| * Close opened fileHong Minhee2012-09-251-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While file.__del__ closes itself in CPython, PyPy doesn't use reference counting but garbage collection, so destructors aren't automatically closed immediately. Invoked time of __del__ is indeterministic in PyPy. Theoretically it must never cause any problem, but in real world we can't assume setup.py script is immediately terminated. Because in many cases users install boto using setuptools/easy_install. It might cause "too many open files" error. In Windows opened files aren't accessible by other process. So we should explicitly call file.close() in try-finally block or use with block. This patch uses the latter way.
* | Adding beanstalk to setup.py and docs index.Mitch Garnaat2012-09-191-1/+2
|/
* Command line tool for amazon glaciermoliware2012-09-031-2/+2
|
* Add cloudsearch to setup.py and to api doc index. Fixes #759.Mitch Garnaat2012-05-161-1/+1
|
* Update setup.py for boto.mws module.Mitch Garnaat2012-04-301-1/+1
|
* use contents of README.rst for long_descriptionJustin Riley2012-03-201-1/+1
|
* Add swf to list of modules and to reference documentation.Mitch Garnaat2012-03-151-1/+2
|
* Removed duplicate entries for boto.mturk package.Mitch Garnaat2012-02-291-1/+1
|
* Removed tests from the setup.py file, as they're no longer to beChris Moyer2012-02-281-2/+2
| | | | installed
* Tests need to be in the source distro but shouldn't be installed. Also, ↵Mitch Garnaat2012-02-281-5/+1
| | | | moved some tests scattered throughout the distro to the tests directory. Fixes #597.
* Messing around with trove classifiers again.Mitch Garnaat2012-02-151-1/+4
|
* Adding trove classifier for python version.Mitch Garnaat2012-02-141-1/+2
|
* Bumping version number and changing project home page in setup.py.2.2.2Mitch Garnaat2012-02-141-1/+1
|
* Fixing setup.py and MANIFEST to make a clean release with setup.py sdist and ↵2.2.1Mitch Garnaat2012-02-011-5/+12
| | | | bumping version number to avoid confusion.
* Adding boto.dynamodb to list of packages in setup.py. Thought this was ↵Mitch Garnaat2012-01-191-1/+1
| | | | committed earlier but apparently not.
* Adding new instance_events script to setup.py. Related to #429.Mitch Garnaat2012-01-031-1/+2
|
* move setuptools-specific kwargs to 'extra' dictJustin Riley2011-10-251-2/+1
|
* Make cacerts.txt package data instead of just including it in sourceMarc Brinkmann2011-10-241-0/+2
| | | | | | | | | | | | | | | | | distributions. The cacerts.txt was missing from boto distributions (see issue #260). Adding it to MANIFEST.in causes the file to be included in sdist source archives, but *not* when installing via PyPI/pip/directly from github. To fix this issue, MANIFEST.in has been deleted and the (hopefully, as the whole setuptools/distutils affair is a bit of a mess) proper options have been added to setup.py. Installation via git+https through pip has been tested, I have also checked if the file is included in the tarball generated by sdist. I am reasonably confident that this will also cause installs from PyPI to work afterwards.
* Adding support for STS. Includes adding access to service and using ↵Mitch Garnaat2011-10-111-1/+1
| | | | security tokens in S3. Other services will be added shortly. #363.
* Add 'put' commandSimon Ratner2011-09-291-1/+1
|
* install s3multiput scriptChetan Sarva2011-08-041-1/+1
|
* Registering new module in auth handler, setup.py, etcDavid Arthur2011-07-221-1/+2
|
* Explicitly add cacerts.txt to MANIFEST.in to make sure it is included in ↵Mitch Garnaat2011-07-191-2/+2
| | | | source distributions. Closes GH-260.
* Don't install the test suiteGarrett Holmstrom2011-07-121-3/+1
|
* setup.py: raise error if Python <= 2.4Justin Riley2011-07-071-6/+4
|