Correct setup.py, add installation instructions
This commit is contained in:
parent
4aa9140113
commit
4aa836adb0
2 changed files with 13 additions and 5 deletions
|
@ -1,6 +1,14 @@
|
|||
# morseman
|
||||
|
||||
Install with pip:
|
||||
```
|
||||
pip install --user .
|
||||
```
|
||||
|
||||
To run (assuming Pip installs to a location in your PATH):
|
||||
```
|
||||
morseman
|
||||
```
|
||||
|
||||
## Development
|
||||
To create a virtualenv and install the dependencies in it:
|
||||
|
|
10
setup.py
10
setup.py
|
@ -15,13 +15,13 @@ setuptools.setup(
|
|||
description="Morse trainer",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
scripts=["bin/morseman.py"],
|
||||
scripts=["bin/morseman"],
|
||||
|
||||
url="…",
|
||||
url="https://git.zeus.gent/midgard/morseman/",
|
||||
project_urls={
|
||||
"Source": "…",
|
||||
"Change log": "…/-/blob/master/CHANGELOG.md",
|
||||
"Bug tracker": "…/-/issues",
|
||||
"Source": "https://git.zeus.gent/midgard/morseman/",
|
||||
"Change log": "https://git.zeus.gent/midgard/morseman/-/blob/master/CHANGELOG.md",
|
||||
"Bug tracker": "https://git.zeus.gent/midgard/morseman/-/issues",
|
||||
},
|
||||
|
||||
classifiers=[
|
||||
|
|
Loading…
Reference in a new issue