Skip to content

Commit

Permalink
Fix packages in setup, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Petersen committed Dec 3, 2018
1 parent 345e25e commit 0f7f726
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import re

from setuptools import setup
from setuptools import setup, find_packages


def resolve_requirements(file):
Expand Down Expand Up @@ -44,7 +44,7 @@ def find_version(file):
author='Medical Image Computing Group, DKFZ',
author_email='mic@dkfz-heidelberg.de',
license=license,
packages=['trixi'],
packages=find_packages(),
install_requires=required,
zip_safe=True,
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion trixi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
import matplotlib
if use_agg: matplotlib.use("Agg", warn=False)

__version__ = "0.1.1.0"
__version__ = "0.1.1.1"

0 comments on commit 0f7f726

Please sign in to comment.