Skip to content

Instantly share code, notes, and snippets.

@mpkocher
Created February 25, 2013 19:40
Show Gist options
  • Save mpkocher/5032565 to your computer and use it in GitHub Desktop.
Save mpkocher/5032565 to your computer and use it in GitHub Desktop.
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if ("install" in sys.argv) and sys.version_info < (2, 7, 0):
print "pbcore requires Python 2.7"
sys.exit(-1)
setup(
name = 'pbcore',
version='0.5.0',
author='Pacific Biosciences',
author_email='devnet@pacificbiosciences.com',
license=open('LICENSES.txt').read(),
packages = ['pbcore'],
package_dir = {'':'src'},
package_data = {'pbcore': ['data/*.h5', 'data/*.gff3', 'data/*.fasta'] },
zip_safe = False,
install_requires=[
'h5py >= 2.0.1',
'numpy >= 1.6.0'
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment