-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use ordered dict for samples, fixes #2
- Loading branch information
James Casbon
committed
Jan 16, 2012
1 parent
dcbb72c
commit bc8c85e
Showing
3 changed files
with
23 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
from setuptools import setup | ||
import sys | ||
|
||
requires = [] | ||
|
||
# install ordereddict for python < 2.7 | ||
py_version = sys.version_info | ||
if py_version.major == 2 and py_version.minor < 7: | ||
requires.append('ordereddict') | ||
|
||
setup( | ||
name='PyVCF', | ||
|
@@ -7,5 +15,6 @@ | |
author='James Casbon', | ||
author_email='[email protected]', | ||
description='Variant Call Format (VCF) parser for python', | ||
test_suite='test' | ||
test_suite='test', | ||
requires=requires | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters