Skip to content

Commit fe7f4e6

Browse files
authored
Merge pull request #53 from pbashyal-nmdp/load_mac_file_flag
Rename download_mac flag
2 parents 9b01595 + 7cbd4a1 commit fe7f4e6

File tree

9 files changed

+149
-157
lines changed

9 files changed

+149
-157
lines changed

README.rst

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,14 @@ Install from PyPi
3535
pip install py-ard
3636
3737
Testing
38-
3938
-------
40-
To run behavior-driven development (BDD) tests locally via the behave framework,
41-
you'll need to set up a virtual environment.
39+
40+
To run behavior-driven development (BDD) tests locally via the behave framework,
41+
you'll need to set up a virtual environment. See Install from source
4242

4343
.. code-block::
44-
# Virtual environment setup
45-
python3 -m venv testing
46-
source testing/bin/activate
44+
45+
# Install test dependencies
4746
pip install --upgrade pip
4847
pip install -r test-requirements.txt
4948
@@ -61,7 +60,7 @@ Example
6160
ard = ARD('3290')
6261
6362
# You can specify a data directory for temp files
64-
# ard = ard = ARD('3290', data_dir='/tmp/py-ard')
63+
# ard = ARD('3290', data_dir='/tmp/py-ard')
6564
6665
# Initialize with latest DB
6766
ard = ARD()

pyard/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
#
4-
# pyars pyARS.
4+
# pyard pyARD.
55
# Copyright (c) 2018 Be The Match operated by National Marrow Donor Program. All Rights Reserved.
66
#
77
# This library is free software; you can redistribute it and/or modify it
@@ -21,8 +21,7 @@
2121
# > http://www.fsf.org/licensing/licenses/lgpl.html
2222
# > http://www.opensource.org/licenses/lgpl-license.php
2323
#
24-
from __future__ import absolute_import
2524
from .pyard import ARD
2625

2726
__author__ = """NMDP Bioinformatics"""
28-
__version__ = '0.0.22'
27+
__version__ = '0.1.0'

0 commit comments

Comments
 (0)