Skip to content

Commit 233756f

Browse files
committed
Add rosalind to the executable names.
1 parent 80802f7 commit 233756f

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

README.rst

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
README: Challenges
44
==================
55

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.
88

99
Find the full documentation at Readthedocs_.
1010

@@ -270,15 +270,17 @@ If you have a fully configured python 3 environment up and running you can insta
270270
prompt> pip3 search challenges
271271
prompt> pip3 install challenges
272272
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`.
275275

276276
.. code-block:: bash
277277
278278
prompt> challenge --version
279-
challenge 0.1.2
279+
challenge 0.6.0
280280
281281
prompt> stepik --version
282-
stepik 0.1.2
282+
stepik 0.6.0
283283
284+
prompt> rosalind --version
285+
rosalind 0.6.0
284286

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
setup(
1919
name='challenges',
2020
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',
2424
long_description=long_description,
25-
keywords='education challenges bioinformatics Coursera Stepik',
25+
keywords='education challenges bioinformatics Coursera Stepik Rosalind',
2626
url='https://github.com/elmar-hinz/Python.Challenges',
2727
author='Elmar Hinz',
2828
author_email='t3elmar@gmail.com',
@@ -31,12 +31,13 @@
3131
package_data={
3232
'HelloWorld': ['sample.txt', 'result.txt'],
3333
'challenges': ['version.txt'],
34-
},
34+
},
3535
include_package_data=True,
3636
entry_points={
3737
'console_scripts': [
3838
'challenge=challenges:main',
3939
'stepik=challenges:main',
40+
'rosalind=challenges:main',
4041
],
4142
},
4243
scripts=['bin/challenge'],

0 commit comments

Comments
 (0)