-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 758 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
from primerdiffer import __version__
with open('readme.md', "r") as f:
LONG_DESC = f.read()
setup(
name='primerdiffer',
version=__version__,
packages=['', "primerdiffer", "bin"],
url='https://github.com/Runsheng/primerdiffer',
license='GPL-2',
author='runsheng',
author_email='runsheng.lee@gmail.com',
description='batch design of primers for genotyping two or more haplotypes in hybrids',
long_description=LONG_DESC,
long_description_content_type='text/markdown',
install_requires = ["primer3-py>=0.6.1",
"biopython>=1.78"],
scripts = ['bin/primerdesign.py',
'bin/ispcr.py',
'bin/getpos_primers.py'
]
)