-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
43 lines (40 loc) · 1.44 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
42
43
from setuptools import setup, find_packages
from primerserver2.core import version
setup(name='primerserver2',
version=version.get(),
description="a high-throughput primer design and specificity-checking platform",
long_description=__doc__,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
keywords='primer bioinformatics PCR',
author='Tao Zhu',
author_email='[email protected]',
url='https://github.com/billzt/PrimerServer2',
license='MIT',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6, <3.9',
install_requires=[
'primer3-py < 0.7',
'progressbar2 < 3.56',
'flask < 2.1 ',
'python-dotenv < 0.20',
'python-utils < 2.7',
'six < 1.17'
],
entry_points={
'console_scripts': [
'primertool = primerserver2.cmd.primertool:main',
'primertool-junction = primerserver2.cmd.junctions:main',
'primertool-isoform = primerserver2.cmd.isoforms:main',
'primerserver-config = primerserver2.web.config:prepare'
]
},
)