Skip to content

Commit 12490df

Browse files
committed
add package to pypi
1 parent 0edf184 commit 12490df

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,15 @@ Use CTRL+R to restart and CTRL+C to exit.
1313
See `tt --help` for all options.
1414

1515
## Recommended installation
16-
```bash
16+
```sh
17+
python3 -m pip install typing_test --user
18+
```
19+
20+
### Manual
21+
```sh
1722
git clone https://github.com/ecly/typing_test
1823
cd typing_test
19-
pip install . --user
24+
python3 -m pip install . --user
2025
```
2126

2227
## License

setup.py

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
# pylint: disable=missing-docstring
22
from setuptools import setup
33

4-
with open("README.md", 'r') as f:
4+
with open("README.md", "r") as f:
55
long_description = f.read()
66

77
setup(
8-
name='typing_test',
9-
version='0.1',
10-
description='Typing test in the terminal similar to 10fastfingers',
8+
name="typing_test",
9+
version="0.1.0",
10+
description="Typing test in the terminal similar to 10fastfingers",
1111
license="MIT",
1212
long_description=long_description,
13-
author='Emil Lynegaard',
14-
author_email='ecly@mailbox.org',
13+
long_description_content_type="text/markdown",
14+
author="Emil Lynegaard",
15+
author_email="ecly@mailbox.org",
1516
url="http://www.github.com/ecly/typing_test",
1617
packages=["typing_test"],
17-
package_data={
18-
"typing_test": ["data/vocab"]
19-
},
18+
package_data={"typing_test": ["data/vocab"]},
2019
install_requires=[],
21-
scripts=['scripts/tt'],
20+
scripts=["scripts/tt"],
2221
keywords=[
2322
"typing",
2423
"typing test",

0 commit comments

Comments
 (0)