-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
95 lines (84 loc) · 2.46 KB
/
Copy pathsetup.py
File metadata and controls
95 lines (84 loc) · 2.46 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from os.path import join
from setuptools import find_packages
from setuptools import setup
from src.polyoligo._version import __version__
# Get the long description from the README file
with open(join("README.md")) as f:
long_description = f.read()
setup(
name="polyoligo",
version=__version__,
description="Set of tools to design oligos with complex genomes.",
long_description=long_description,
url="https://github.com/MirkoLedda/polyoligo",
author="Mirko Ledda",
author_email="maledda@ucdavis.edu",
license="BSD-2",
keywords=[
"genomics",
"bioinformatics",
"polyploid",
"genotyping",
"KASP",
"CAPS",
"PCR",
"CRISPR",
],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
],
# Python requirements
python_requires=">=3, <4",
# Specify source packages
packages=find_packages('src'),
package_dir={'': 'src'},
# Dependencies
install_requires=[
"biopython==1.76",
"numpy==1.18.1",
"pandas==1.0.1",
"pysam==0.16.0.1",
"PyVCF==0.6.8",
"PyYAML>=5.4",
"tqdm==4.42.1",
"primer3-py==0.6.0",
],
# Create the executable
entry_points={
'console_scripts': [
'polyoligo = polyoligo.logo:main',
'polyoligo-kasp = polyoligo.cli_kasp:main',
'polyoligo-crispr = polyoligo.cli_crispr:main',
'polyoligo-pcr = polyoligo.cli_pcr:main',
'polyoligo-caps = polyoligo.cli_caps:main',
'polyoligo-hrm = polyoligo.cli_hrm:main',
]
},
# Requirements for tests and coverage analysis
setup_requires=["pytest-runner", "cython"],
tests_require=[
"pytest",
"coverage",
"pytest_cov",
"memory_profiler",
"matplotlib",
],
package_data={
'bin/linux_x64': ['bin/linux_x64/*'],
'bin/macosx_x64': ['bin/macosx_x64/*'],
'bin/win_x64': ['bin/win_x64/*'],
'data': ['data/*'],
},
include_package_data=True,
zip_safe=False,
)