Skip to content

Commit

Permalink
pip 2/2
Browse files Browse the repository at this point in the history
First time using pip & twine, had to do some checks
  • Loading branch information
grimar2008 committed Jun 2, 2019
1 parent 82a6ab1 commit 67220df
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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."___
Expand Down
Empty file.
Empty file.
Empty file added automatabpp/machine/__init__.py
Empty file.
Empty file.
Empty file.
Empty file added automatabpp/state/__init__.py
Empty file.
Empty file added automatabpp/xml/__init__.py
Empty file.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '[email protected]',
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',
Expand Down

0 comments on commit 67220df

Please sign in to comment.