Skip to content

Commit

Permalink
include subpackages to setup
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvoegele committed Jun 14, 2021
1 parent d5f582e commit 3672bef
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
from setuptools import setup

setup(name='pensa',
version='0.2.1',
version='0.2.2',
description='PENSA - protein ensemble analysis',
url='http://github.com/drorlab/pensa',
author='Martin Voegele, Neil Thomson, Sang Truong',
author_email='[email protected]',
license='MIT',
packages=['pensa'],
packages=find_packages(include=[
'pensa',
'pensa.preprocessing',
'pensa.features',
'pensa.comparison',
'pensa.dimensionality',
'pensa.clusters',
'pensa.statesinfo',
]),
zip_safe=False,
install_requires=[
'numpy',
Expand Down

0 comments on commit 3672bef

Please sign in to comment.