Skip to content

Commit ffe7d80

Browse files
committed
Preparing for 0.1.0 release
1 parent 8ee0fc4 commit ffe7d80

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Did you mean '--output'?
9797

9898
### Using luarocks
9999

100-
Installing argparse using luarocks ~~is~~ will be easy.
100+
Installing argparse using luarocks is simple.
101101

102102
```bash
103103
$ luarocks install argparse
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package = "argparse"
2+
version = "0.1.0-1"
3+
source = {
4+
url = "git://github.com/mpeterv/argparse.git",
5+
tag = "0.1.0"
6+
}
7+
description = {
8+
summary = "A feature-rich command-line argument parser",
9+
detailed = "argparse supports positional arguments, options, flags, optional arguments, subcommands and more. argparse automatically generates usage, help and error messages. ",
10+
homepage = "https://github.com/mpeterv/argparse",
11+
license = "MIT/X11"
12+
}
13+
dependencies = {
14+
"lua >= 5.1, < 5.3",
15+
"30log >= 0.8"
16+
}
17+
build = {
18+
type = "builtin",
19+
modules = {
20+
argparse = "src/argparse.lua"
21+
},
22+
copy_directories = {"doc", "spec"}
23+
}

0 commit comments

Comments
 (0)