Skip to content

Commit

Permalink
actually fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
nkrusch committed Oct 4, 2022
1 parent bdde0d2 commit 0d76475
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pymwp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
__title__ = "pymwp"
__author__ = "Clément Aubert, Thomas Rubiano, Neea Rusch, Thomas Seiller"
__license__ = "CC BY-NC 4.0"
__version__ = "0.2.0"
__version__ = "0.2.1"

from pymwp.parser import Parser
from pymwp.delta_graphs import DeltaGraph
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import setuptools
from setuptools import find_packages

__title__ = "pymwp"
__author__ = "Clément Aubert, Thomas Rubiano, Neea Rusch, Thomas Seiller"
__desc__ = "Implementation of MWP analysis on C code in Python."
__version__ = "0.2.0"
__version__ = "0.2.1"

with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
Expand All @@ -14,8 +13,7 @@
version=__version__,
author=__author__,
author_email='[email protected]',
package_dir={'': "pymwp"},
packages=find_packages('pymwp'),
packages=['pymwp'],
entry_points={'console_scripts': ['pymwp = pymwp.__main__:main'], },
description=__desc__,
long_description=long_description,
Expand Down

0 comments on commit 0d76475

Please sign in to comment.