summaryrefslogtreecommitdiff
path: root/src/args.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-03-31 18:54:41 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-06-11 20:49:43 +0100
commit332a5c2553db41de777473a1e1be9cd1522c9496 (patch)
tree3ee06a59f147ccc4009b35cccfbe2461bcd18310 /src/args.py
parentcf44cf7cdec9fdb35caa372563d57e7045dc29dd (diff)
downloadpoezio-332a5c2553db41de777473a1e1be9cd1522c9496.tar.gz
poezio-332a5c2553db41de777473a1e1be9cd1522c9496.tar.bz2
poezio-332a5c2553db41de777473a1e1be9cd1522c9496.tar.xz
poezio-332a5c2553db41de777473a1e1be9cd1522c9496.zip
Move the src directory to poezio, for better cython compatibility.
Diffstat (limited to 'src/args.py')
-rw-r--r--src/args.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/args.py b/src/args.py
deleted file mode 100644
index 63e77927..00000000
--- a/src/args.py
+++ /dev/null
@@ -1,28 +0,0 @@
-"""
-Module related to the argument parsing
-
-There is a fallback to the deprecated optparse if argparse is not found
-"""
-from os import path
-from argparse import ArgumentParser, SUPPRESS
-
-def parse_args(CONFIG_PATH=''):
- """
- Parse the arguments from the command line
- """
- parser = ArgumentParser('poezio')
- parser.add_argument("-c", "--check-config", dest="check_config",
- action='store_true',
- help='Check the config file')
- parser.add_argument("-d", "--debug", dest="debug",
- help="The file where debug will be written",
- metavar="DEBUG_FILE")
- parser.add_argument("-f", "--file", dest="filename",
- default=path.join(CONFIG_PATH, 'poezio.cfg'),
- help="The config file you want to use",
- metavar="CONFIG_FILE")
- parser.add_argument("-v", "--version", dest="version",
- help=SUPPRESS, metavar="VERSION",
- default="1.0-dev")
- options = parser.parse_args()
- return options