File: setup.py

package info (click to toggle)
libgoby-java 3.3.1%2Bdfsg2-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 58,108 kB
  • sloc: java: 78,105; cpp: 5,011; xml: 3,170; python: 2,108; sh: 1,575; ansic: 277; makefile: 114
file content (50 lines) | stat: -rw-r--r-- 1,768 bytes parent folder | download | duplicates (2)
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
import os
import sys

try:
    import ez_setup, Extension
    ez_setup.use_setuptools()
except ImportError:
    pass
from distutils.core import setup, Extension
import subprocess

setup(
    name='goby',
    version='3.3.0',
    packages=['goby'],
    author='Campagne Lab',
    author_email='fac2003@campagnelab.org',
    scripts=[
        'GobyAlignmentStats.py',
        'GobyAlignmentToText.py',
        'GobyCompactToFasta.py',
        'GobyReadsStats.py',
        'SbiPrint.py'
        ''
        ],
    url='http://goby.campagnelab.org/',
    description='Python API for reading read and alignment data files created with the Goby framework.',
    license='GNU LESSER GENERAL PUBLIC LICENSE',
    long_description=open('README.txt').read(),
    # Remove below comments and adjust include path to enable (much) faster protobuf with cpp implementation:
    # when installed this way, do: export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp to enable
    #ext_modules=[Extension('gobypodpb',
    #        sources=['cpp/gobypodpb.c','cpp/Alignments.pb.cc',
    #        'cpp/Reads.pb.cc',
    #        'cpp/BaseInformationRecords.pb.cc' ],
    #        include_dirs=['/usr/local/include'], # adjust if protobuf installed elsewhere
    #        library_dirs=['/usr/local/lib'],      # adjust if protobuf installed elsewhere
    #        libraries=['protobuf'])],
    requires=[
        'google.protobuf (>=3.3)',
        ],
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'Intended Audience :: Science/Research',
        'License :: OSI Approved :: GNU LESSER GENERAL PUBLIC LICENSE',
        'Operating System :: OS Independent',
        'Topic :: Scientific/Engineering :: Bio-Informatics'
        ],
)