Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ python:
- "3.3"
- "3.2"
- "2.7"
- "2.6"
- "pypy"

# command to install dependencies:
# install: pip install -r requirements.txt

# command to run tests:
script: python setup.py test
script: python setup.py test

# migrate to container-based travis.ci: http://docs.travis-ci.com/user/migrating-from-legacy
sudo: false
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) <year> <copyright holders>
Copyright (c) 2015 bw2

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
16 changes: 10 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
.. note::

Though this is stored under the python2.6-0.9.3 branch, this is now
actually a copy of ConfigArgParse 0.10.0. See
https://github.com/letsencrypt/letsencrypt/issues/2243 for more explanation.

Overview
~~~~~~~~

Expand All @@ -9,6 +15,8 @@ Python's command line parsing modules such as argparse have very limited
support for config files and environment variables, so this module
extends argparse to add these features.

|Travis CI Status for bw2/ConfigArgParse|

Features
~~~~~~~~

Expand Down Expand Up @@ -239,9 +247,6 @@ test.test_argparse module) but on configargparse in place of argparse.
This ensures that configargparse will work as a drop in replacement for
argparse in all usecases.

Are unittests still passing: |Travis CI Status for
zorro3/ConfigArgParse| |Analytics|

Previously existing modules (PyPI search keywords: config argparse):

- argparse (built-in module python v2.7+ )
Expand Down Expand Up @@ -348,6 +353,5 @@ Relevant sites:
- http://tricksntweaks.blogspot.com/2013_05_01_archive.html
- http://www.youtube.com/watch?v=vvCwqHgZJc8#t=35

.. |Travis CI Status for zorro3/ConfigArgParse| image:: https://api.travis-ci.org/zorro3/ConfigArgParse.svg?branch=master
.. |Analytics| image:: https://ga-beacon.appspot.com/UA-52264120-1/ConfigArgParse/ConfigArgParse
:target: https://github.com/igrigorik/ga-beacon

.. |Travis CI Status for bw2/ConfigArgParse| image:: https://travis-ci.org/bw2/ConfigArgParse.svg?branch=master
Loading