-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·34 lines (33 loc) · 1.05 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
import setuptools
setuptools.setup(
name='primer_tk',
version='1.0.3',
scripts=['./scripts/primer_tk'],
author="Dennis Kennetz",
author_email="[email protected]",
description="A toolkit to design primers in multiplex pools and around SVs.",
packages=['primer_tk', 'primer_tk.tests'],
package_dir={'primer_tk': 'src/primer_tk', 'primer_tk.tests': 'test/python_tests'},
package_data={'test': [
'data/*']},
install_requires=[
'setuptools',
'pandas >= 0.22.0',
'numpy >= 1.16.0',
'biopython >= 1.70',
'pysam==0.15.2'
],
python_requires='>=3.5.*',
test_suite='test',
tests_require=['unittest', 'coverage'],
zip_safe=True,
license='Apache2.0',
url = 'https://github.com/stjude/PrimerTK',
download_url = 'https://github.com/stjude/PrimerTK/archive/1.0.3.tar.gz',
classifiers=[
"Programming Language :: Python :: 3",
'Environment :: Console',
'Natural Language :: English',
'Operating System :: OS Independent'
],
)