Skip to content
This repository has been archived by the owner on Jul 29, 2020. It is now read-only.

Commit

Permalink
fix some install issues
Browse files Browse the repository at this point in the history
  • Loading branch information
j-andrews7 committed Aug 31, 2017
1 parent 24bbd9b commit 26f141e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -14,16 +15,17 @@
)

setup(name='pytfmpval',
version='0.2.0',
version='0.2.1',
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],
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',
Expand Down

0 comments on commit 26f141e

Please sign in to comment.