File tree Expand file tree Collapse file tree 2 files changed +14
-11
lines changed Expand file tree Collapse file tree 2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 3
3
README: Challenges
4
4
==================
5
5
6
- Library to assist programming, testing and execution of solutions for coding
7
- challenges like those on stepik.org
6
+ Library to assist programming, testing and execution of solutions for coding challenges like those on stepik.org or
7
+ rosalind.info.
8
8
9
9
Find the full documentation at Readthedocs _.
10
10
@@ -270,15 +270,17 @@ If you have a fully configured python 3 environment up and running you can insta
270
270
prompt> pip3 search challenges
271
271
prompt> pip3 install challenges
272
272
273
- The library will be included into the python class path. The runner will be globally available as `challenge ` or
274
- alternatively as `stepik `.
273
+ The library will be included into the python class path. The runner will be globally available as `challenge `,
274
+ alternatively as `stepik ` or ` rosalind ` .
275
275
276
276
.. code-block :: bash
277
277
278
278
prompt> challenge --version
279
- challenge 0.1.2
279
+ challenge 0.6.0
280
280
281
281
prompt> stepik --version
282
- stepik 0.1.2
282
+ stepik 0.6.0
283
283
284
+ prompt> rosalind --version
285
+ rosalind 0.6.0
284
286
Original file line number Diff line number Diff line change 18
18
setup (
19
19
name = 'challenges' ,
20
20
version = version ,
21
- description = 'Library to assist programming, testing and execution '
22
- + 'of solutions for coding challenges like those on '
23
- 'stepik.org ' ,
21
+ description = 'Library to assist programming, testing and execution of '
22
+ ' solutions for coding challenges like those on stepik.org or '
23
+ 'rosalind.info ' ,
24
24
long_description = long_description ,
25
- keywords = 'education challenges bioinformatics Coursera Stepik' ,
25
+ keywords = 'education challenges bioinformatics Coursera Stepik Rosalind ' ,
26
26
url = 'https://github.com/elmar-hinz/Python.Challenges' ,
27
27
author = 'Elmar Hinz' ,
28
28
author_email = 't3elmar@gmail.com' ,
31
31
package_data = {
32
32
'HelloWorld' : ['sample.txt' , 'result.txt' ],
33
33
'challenges' : ['version.txt' ],
34
- },
34
+ },
35
35
include_package_data = True ,
36
36
entry_points = {
37
37
'console_scripts' : [
38
38
'challenge=challenges:main' ,
39
39
'stepik=challenges:main' ,
40
+ 'rosalind=challenges:main' ,
40
41
],
41
42
},
42
43
scripts = ['bin/challenge' ],
You can’t perform that action at this time.
0 commit comments