elite-scripts/generate_docs.sh

120 lines
2.2 KiB
Bash
Raw Normal View History

2019-11-12 10:31:51 +01:00
#!/usr/bin/env bash
cat > README.md << EOF
# A collection of useful scripts around Elite Dangerous #
2020-01-08 08:30:27 +01:00
## Requirements ##
* argcomplete
* argparse
* requests
* Tkinter
You probably want to install your distribution/OS package for Tkinter instead of
using pip. Then do the good old \`pip install --user -r requirements.txt\`.
Youll also need to install pyEDSMs dependencies:
\`pip install --user -r pyEDSM/requirements.txt\`
2020-01-08 08:30:27 +01:00
2020-01-08 15:13:10 +01:00
## Pre-Compiled Version (Windows) ##
If you check the
[releases](https://github.com/alterNERDtive/elite-scripts/releases) youll find
a .zip file with pre-compiled scripts that dont need Python installed. Mostly
a) for saving myself some hassle and b) because thats easier to distribute with
my
[VoiceAttack profiles](https://github.com/alterNERDtive/VoiceAttack-profiles).
## Scripts ##
### edsm-getnearest.py ###
2019-11-12 10:31:51 +01:00
\`\`\`
EOF
./edsm-getnearest.py -h >> README.md
cat >> README.md << EOF
\`\`\`
### edts.py ###
\`\`\`
EOF
./edts.py -h >> README.md
cat >> README.md << EOF
\`\`\`
\`\`\`
EOF
./edts.py coords -h >> README.md
cat >> README.md << EOF
\`\`\`
2020-01-08 15:13:10 +01:00
### explorationtools.py ###
2019-11-12 10:31:51 +01:00
\`\`\`
EOF
./explorationtools.py -h >> README.md
cat >> README.md << EOF
\`\`\`
\`\`\`
EOF
./explorationtools.py bodycount -h >> README.md
cat >> README.md << EOF
\`\`\`
\`\`\`
EOF
./explorationtools.py distancebetween -h >> README.md
cat >> README.md << EOF
\`\`\`
2019-11-12 10:31:51 +01:00
\`\`\`
EOF
2020-01-06 17:28:40 +01:00
./explorationtools.py findcommander -h >> README.md
2019-11-12 10:31:51 +01:00
cat >> README.md << EOF
\`\`\`
2020-01-08 08:30:27 +01:00
2020-01-13 21:23:41 +01:00
\`\`\`
EOF
./explorationtools.py findsystem -h >> README.md
cat >> README.md << EOF
\`\`\`
\`\`\`
EOF
./explorationtools.py systemlist -h >> README.md
cat >> README.md << EOF
\`\`\`
### spansh.py ###
\`\`\`
EOF
./spansh.py -h >> README.md
cat >> README.md << EOF
\`\`\`
\`\`\`
EOF
./spansh.py nearestsystem -h >> README.md
cat >> README.md << EOF
\`\`\`
\`\`\`
EOF
./spansh.py oldstations -h >> README.md
cat >> README.md << EOF
\`\`\`
\`\`\`
EOF
./spansh.py systemexists -h >> README.md
cat >> README.md << EOF
\`\`\`
2020-01-08 08:30:27 +01:00
## Need Help / Want to Contribute? ##
Just [file an issue](https://github.com/alterNERDtive/elite-scripts/issues/new)
2020-07-01 11:34:16 +02:00
here or [hop into Discord](https://discord.gg/XHNX7jN) if that is your thing.
2019-11-12 10:31:51 +01:00
EOF