forked from PlantandFoodResearch/pcr_marker_design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 914 Bytes
/
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
import setuptools
setuptools.setup(
name="pcr_marker_design",
version="0.1.0",
url="https://github.com/PlantandFoodResearch/pcr-marker-design",
author="John McCallum",
author_email="[email protected]",
description="Tools for PCR assay design from NGS variant data",
long_description=open('README.rst').read(),
#packages=setuptools.find_packages()
packages=['pcr_marker_design', 'test'],
install_requires=['numpy','biopython','primer3-py','setuptools','pytest', \
'scipy','numpy','requests','bcbio-gff','pybedtools','pyfaidx',\
'pandas','pysam','cython','pyvcf'],
scripts=['design_primers.py'],
classifiers=[
'Development Status :: Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)