Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Zsailer committed Jan 11, 2017
1 parent 1f15d91 commit ba3f022
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions setup.py
Expand Up @@ -7,15 +7,26 @@
from distutils.extension import Extension


# Define extensions
extension1 = Extension('epistasis.decomposition', ["epistasis/decomposition.c"])

# define all packages for distribution
packages = [
'epistasis',
'epistasis.models',
'epistasis.models.linear',
'epistasis.models.nonlinear',
'epistasis.plotting',
'epistasis.simulate',
]

setup(name='epistasis',
version='0.1',
version='0.1.1',
description='High Order Epistasis Models/Regressions for Genotype-Phenotype Maps',
author='Zach Sailer',
author_email='zachsailer@gmail.com',
url='https://github.com/harmslab/epistasis',
packages=['epistasis'],
packages=packages,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit ba3f022

Please sign in to comment.