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
|
# morseman
|
||||||
|
|
||||||
|
Install with pip:
|
||||||
|
```
|
||||||
|
pip install --user .
|
||||||
|
```
|
||||||
|
|
||||||
|
To run (assuming Pip installs to a location in your PATH):
|
||||||
|
```
|
||||||
|
morseman
|
||||||
|
```
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
To create a virtualenv and install the dependencies in it:
|
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",
|
description="Morse trainer",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
scripts=["bin/morseman.py"],
|
scripts=["bin/morseman"],
|
||||||
|
|
||||||
url="…",
|
url="https://git.zeus.gent/midgard/morseman/",
|
||||||
project_urls={
|
project_urls={
|
||||||
"Source": "…",
|
"Source": "https://git.zeus.gent/midgard/morseman/",
|
||||||
"Change log": "…/-/blob/master/CHANGELOG.md",
|
"Change log": "https://git.zeus.gent/midgard/morseman/-/blob/master/CHANGELOG.md",
|
||||||
"Bug tracker": "…/-/issues",
|
"Bug tracker": "https://git.zeus.gent/midgard/morseman/-/issues",
|
||||||
},
|
},
|
||||||
|
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|
Loading…
Reference in a new issue