-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
54 lines (50 loc) · 2.17 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
44
45
46
47
48
49
50
51
52
53
54
# Copyright (C) 2012 Allis Tauri <allista@gmail.com>
#
# degen_primer is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# degen_primer is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
'''
Created on Jun 19, 2012
@author: Allis Tauri <allista@gmail.com>
'''
# Utility function to read the README.md file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README.md file and 2) it's easier to type in the README.md file than to put a raw
# string in below ...
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
from DegenPrimer.UnifiedNN import UnifiedNN
from distutils.core import setup
setup(name='degen-primer',
version='2.9.1',
description='Degenerate primer characterization and '
'in silico PCR simulation software.',
long_description=read('README.md'),
license='GPL-3',
author='Allis Tauri',
author_email='allista@gmail.com',
url='https://github.com/allista/DegenPrimer',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'Operating System :: POSIX',
'Programming Language :: Python'],
python_requires="==2.7.18",
packages=['DegenPrimer'],
scripts=['degen_primer'],
data_files=[('share/degen_primer', ['data/'+UnifiedNN.internal_NN_filename,
'data/'+UnifiedNN.dangling_ends_filename,
'data/'+UnifiedNN.loops_filename,
'data/'+UnifiedNN.tri_tetra_hairpin_loops_filename])]
)