Skip to content

Commit

Permalink
Fixed setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-camilleri committed May 18, 2020
1 parent 4688f85 commit 079260f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion mpctools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""

__author__ = "Michael P. J. Camilleri"
__version__ = "0.4.05"
__version__ = "0.4.06"
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,11 @@
with open("README.md", "r") as fh:
long_description = fh.read()

with open("mpctools/__init__.py") as fh:
version = {}
exec(fh.read(), version)

setup(
# Common Setup
name="mpctools",
version=version['__version__'],
packages=["mpctools.extensions", "mpctools.parallel"],
version=mpctools.__version__,
packages=["mpctools", "mpctools.extensions", "mpctools.parallel"],
# Requirements
install_requires=[
"numpy",
Expand All @@ -37,9 +33,11 @@
license="GNU GPL",
keywords=["extensions", "parallel", "utilities"],
url="https://github.com/michael-camilleri/mpctools",
download_url="https://github.com/michael-camilleri/mpctools/archive/v_0405.tar.gz",
download_url="https://github.com/michael-camilleri/mpctools/archive/v_0406.tar.gz",
long_description=long_description,
long_description_content_type="text/markdown",
data_files=[("", ["LICENSE"])],
include_package_data=True,
# PyPi Data
classifiers=[
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit 079260f

Please sign in to comment.