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
|
#!/usr/bin/python3
#
# Install script
#
#
import sys
import os
import os.path
import re
import glob
from os import path
#
# Add to the python path the directory containing the extensions
# of distutils
#
PACKAGE = "OBITools"
VERSION = "1.2.13"
AUTHOR = 'Eric Coissac'
EMAIL = 'eric@coissac.eu'
URL = 'http://metabarcoding.org/obitools'
LICENSE = 'CeCILL-V2'
SRC = 'src'
CSRC = None
sys.path.append('distutils.ext')
if __name__=="__main__":
from obidistutils.serenity import serenity_mode
serenity=serenity_mode(PACKAGE,VERSION)
from obidistutils.core import setup
from obidistutils.core import CTOOLS
from obidistutils.core import CEXES
from obidistutils.core import FILES
DEPRECATED_SCRIPTS=["fastaComplement", "fastaUniq","fasta2tab","fastaAnnotate",
"fastaSample","fastaGrep","fastaCount","fastaLength",
"fastaHead","fastaTail","fastaSplit","fastaStrand",
"fastaLocate","solexaPairEnd","ecoTag","obijoinpairedend"
]
setup(name=PACKAGE,
description="Scripts and library for sequence analysis",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Utilities',
],
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
license=LICENSE,
url=URL,
python_src=SRC,
sse='sse2')
#serenity=serenity)
|