Skip to content

Commit

Permalink
add package to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
ecly committed Jun 26, 2020
1 parent 0edf184 commit 12490df
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@ Use CTRL+R to restart and CTRL+C to exit.
See `tt --help` for all options.

## Recommended installation
```bash
```sh
python3 -m pip install typing_test --user
```

### Manual
```sh
git clone https://github.com/ecly/typing_test
cd typing_test
pip install . --user
python3 -m pip install . --user
```

## License
Expand Down
19 changes: 9 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
# pylint: disable=missing-docstring
from setuptools import setup

with open("README.md", 'r') as f:
with open("README.md", "r") as f:
long_description = f.read()

setup(
name='typing_test',
version='0.1',
description='Typing test in the terminal similar to 10fastfingers',
name="typing_test",
version="0.1.0",
description="Typing test in the terminal similar to 10fastfingers",
license="MIT",
long_description=long_description,
author='Emil Lynegaard',
author_email='ecly@mailbox.org',
long_description_content_type="text/markdown",
author="Emil Lynegaard",
author_email="ecly@mailbox.org",
url="http://www.github.com/ecly/typing_test",
packages=["typing_test"],
package_data={
"typing_test": ["data/vocab"]
},
package_data={"typing_test": ["data/vocab"]},
install_requires=[],
scripts=['scripts/tt'],
scripts=["scripts/tt"],
keywords=[
"typing",
"typing test",
Expand Down

0 comments on commit 12490df

Please sign in to comment.