Skip to content

Instantly share code, notes, and snippets.

@j-andrews7
Created July 7, 2017 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j-andrews7/0a78b6dc7b951cfc1efa9700602e1756 to your computer and use it in GitHub Desktop.
Save j-andrews7/0a78b6dc7b951cfc1efa9700602e1756 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
"""
setup.py file for pytfmpval
"""
from distutils.core import setup, Extension
pytfmpval_module = Extension('_pytfmpval',
sources=['src/Matrix.cpp', 'pytfmpval/pytfmpval_wrap.cxx'],
swig_opts=['-c++'],
language='c++'
)
setup(name='pytfmpval',
version='0.1.0',
author="Jared Andrews",
author_email='jared.andrews07@gmail.com',
url='https://github.com/j-andrews7/pytfmpval',
description="""Python bindings for the TFM-Pvalue program.""",
license='GPL-3.0',
keywords='bioinformatics tfmpvalue motifs transcription factor genomics science',
ext_modules=[pytfmpval_module],
py_modules=["pytfmpval"],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules']
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment