This repository was archived by the owner on Jul 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
41 lines (36 loc) · 1.69 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
#!/usr/bin/env python
"""
setup.py file for pytfmpval
"""
# from distutils.core import setup, Extension
from setuptools import find_packages, setup, Extension
pytfmpval_module = Extension('_pytfmpval',
sources=['src/Matrix.cpp', 'pytfmpval/pytfmpval_wrap.cxx'],
swig_opts=['-c++'],
language='c++'
)
setup(name='pytfmpval',
version='0.2.1',
author="Jared Andrews",
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"],
install_requires=["psutil"],
packages=find_packages(exclude=("tests", "docs")),
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']
)