File tree Expand file tree Collapse file tree 2 files changed +16
-12
lines changed
Expand file tree Collapse file tree 2 files changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,15 @@ Use CTRL+R to restart and CTRL+C to exit.
1313See ` 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
1722git clone https://github.com/ecly/typing_test
1823cd typing_test
19- pip install . --user
24+ python3 -m pip install . --user
2025```
2126
2227## License
Original file line number Diff line number Diff line change 11# pylint: disable=missing-docstring
22from 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
77setup (
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" ,
You can’t perform that action at this time.
0 commit comments