Skip to content

Commit

Permalink
Fix badge & setup
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreDecan committed Apr 11, 2018
1 parent affce66 commit ad71e53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Sismic for Python
.. image:: https://api.codacy.com/project/badge/grade/10d0a71b01c144859db571ddf17bb7d4
:target: https://www.codacy.com/app/alexandre-decan/sismic
.. image:: https://badge.fury.io/py/sismic.svg
:target: https://pypi.python.org/pypi/sismic
:target: https://pypi.org/project/sismic/
.. image:: https://readthedocs.org/projects/sismic/badge/?version=master
:target: https://sismic.readthedocs.io/

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from codecs import open
from os import path

from setuptools import setup
from setuptools import setup, find_packages

import sismic

Expand Down Expand Up @@ -46,7 +46,7 @@

],
keywords='statechart state machine interpreter model uml scxml harel',
packages=['sismic'],
packages=find_packages(exclude=['docs', 'tests']),
python_requires='>=3.4',
install_requires=[
'ruamel.yaml>=0.12.10',
Expand Down
2 changes: 1 addition & 1 deletion sismic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__description__ = 'Sismic Interactive Statechart Model Interpreter and Checker'
__version__ = '1.0.0-pre1'
__version__ = '1.0.0rc2'
__url__ = 'https://github.com/AlexandreDecan/sismic/'
__author__ = 'Alexandre Decan'
__email__ = 'alexandre.decan@lexpage.net'
Expand Down

0 comments on commit ad71e53

Please sign in to comment.