forked from ngcrawford/pypgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup
setup(
name='pypgen',
version='0.2.1',
author='Nicholas G. Crawford',
author_email='[email protected]',
url='http://pypi.python.org/pypi/pypgen/',
license='LICENSE.txt',
description='Genetic diversity metrics from population genomic datasets.',
long_description=open('README.rst').read(),
test_suite='nose.collector',
tests_require=['nose'],
install_requires=[
"pysam == 0.6.0" # Newer versions don't seem to compile correctly.
],
packages=[
'pypgen.fstats',
'pypgen.parser',
'pypgen.misc'
],
package_data={
'': ['*.txt',
'*.rst'], # READMEs, etc
'pypgen/data': [
'example.vcf.gz',
'example.vcf.gz.tbi',
]
},
include_package_data=True,
scripts=[
'scripts/vcfSNVfstats',
'scripts/vcfWindowedFstats',
],
)