This repository has been 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
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24bbd9b
commit 26f141e
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,8 @@ | |
setup.py file for pytfmpval | ||
""" | ||
|
||
from distutils.core import setup, Extension | ||
# from distutils.core import setup, Extension | ||
from setuptools import find_packages, setup, Extension | ||
|
||
|
||
pytfmpval_module = Extension('_pytfmpval', | ||
|
@@ -14,16 +15,17 @@ | |
) | ||
|
||
setup(name='pytfmpval', | ||
version='0.2.0', | ||
version='0.2.1', | ||
author="Jared Andrews", | ||
author_email='[email protected]', | ||
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], | ||
install_requires=["psutil"], | ||
py_modules=["pytfmpval"], | ||
install_requires=["psutil"], | ||
packages=find_packages(exclude=("tests", "docs")), | ||
classifiers=['Development Status :: 4 - Beta', | ||
'Intended Audience :: Science/Research', | ||
'Intended Audience :: Developers', | ||
|