Skip to content

Commit

Permalink
Refs #37 setup.py with no args to find_packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jmborr committed Apr 10, 2018
1 parent 1d8b31b commit 1a0c091
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion qef/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@

__author__ = """Jose Borreguero"""
__email__ = '[email protected]'
__version__ = '0.2.0'
__version__ = '0.2.1'

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.2.1
commit = True
tag = True

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@

setup(
name='qef',
version='0.2.0',
version='0.2.1',
description="quasielastic fitting",
long_description=readme + '\n\n' + history,
author="Jose Borreguero",
author_email='[email protected]',
url='https://github.com/jmborr/qef',
packages=find_packages(include=['qef']),
#packages=find_packages(include=['qef']),
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
license="MIT license",
Expand Down

0 comments on commit 1a0c091

Please sign in to comment.