diff --git a/README.md b/README.md index 29d637a..8f07fb4 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,12 @@ This way you can concentrate on writing code for your main loop only. Naturally, everything is better when there is an example with it to explain it even more so I recommend you check [the examples](#additional-links) in the repository first. +You can install the module via Pypi with + +``` +pip install automatabpp +``` + ### A short explanation of the project To really simplify what this is all about in one sentence: ___"Instead of programming the code yourself you draw graphs to define the behaviour."___ diff --git a/automatabpp/commandqueue/__init__.py b/automatabpp/commandqueue/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/automatabpp/comparisons/__init__.py b/automatabpp/comparisons/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/automatabpp/machine/__init__.py b/automatabpp/machine/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/automatabpp/machines/__init__.py b/automatabpp/machines/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/automatabpp/metaclasses/__init__.py b/automatabpp/metaclasses/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/automatabpp/state/__init__.py b/automatabpp/state/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/automatabpp/xml/__init__.py b/automatabpp/xml/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index 579356c..532c0bc 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,14 @@ from distutils.core import setup setup( name = 'automatabpp', - packages = ['automatabpp'], - version = '1.0.0', + packages = ['automatabpp', 'automatabpp.commandqueue', 'automatabpp.comparisons', 'automatabpp.constants', 'automatabpp.machine', 'automatabpp.machines', 'automatabpp.metaclasses', 'automatabpp.state', 'automatabpp.xml'], + version = '0.9.9', license='GPL 3', description = long_description, author = 'Grgo Mariani', author_email = 'grgo.mariani@protonmail.com', url = 'https://github.com/GrgoMariani/Python-Automata-Based-Programming-Paradigm', - download_url = 'https://github.com/GrgoMariani/Python-Automata-Based-Programming-Paradigm/archive/v_100.tar.gz', # I explain this later on + download_url = 'https://github.com/GrgoMariani/Python-Automata-Based-Programming-Paradigm/archive/v_099.tar.gz', # I explain this later on keywords = ['Automata', 'Paradigm', 'Finite', 'State', 'Machine', 'yEd', 'Graph', 'Graphs', 'Behaviour'], classifiers=[ 'Development Status :: 5 - Production/Stable',