Skip to content

Commit 67220df

Browse files
committed
pip 2/2
First time using pip & twine, had to do some checks
1 parent 82a6ab1 commit 67220df

File tree

9 files changed

+9
-3
lines changed

9 files changed

+9
-3
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ This way you can concentrate on writing code for your main loop only.
1616

1717
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.
1818

19+
You can install the module via Pypi with
20+
21+
```
22+
pip install automatabpp
23+
```
24+
1925
### A short explanation of the project
2026

2127
To really simplify what this is all about in one sentence: ___"Instead of programming the code yourself you draw graphs to define the behaviour."___

automatabpp/commandqueue/__init__.py

Whitespace-only changes.

automatabpp/comparisons/__init__.py

Whitespace-only changes.

automatabpp/machine/__init__.py

Whitespace-only changes.

automatabpp/machines/__init__.py

Whitespace-only changes.

automatabpp/metaclasses/__init__.py

Whitespace-only changes.

automatabpp/state/__init__.py

Whitespace-only changes.

automatabpp/xml/__init__.py

Whitespace-only changes.

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
from distutils.core import setup
66
setup(
77
name = 'automatabpp',
8-
packages = ['automatabpp'],
9-
version = '1.0.0',
8+
packages = ['automatabpp', 'automatabpp.commandqueue', 'automatabpp.comparisons', 'automatabpp.constants', 'automatabpp.machine', 'automatabpp.machines', 'automatabpp.metaclasses', 'automatabpp.state', 'automatabpp.xml'],
9+
version = '0.9.9',
1010
license='GPL 3',
1111
description = long_description,
1212
author = 'Grgo Mariani',
1313
author_email = 'grgo.mariani@protonmail.com',
1414
url = 'https://github.com/GrgoMariani/Python-Automata-Based-Programming-Paradigm',
15-
download_url = 'https://github.com/GrgoMariani/Python-Automata-Based-Programming-Paradigm/archive/v_100.tar.gz', # I explain this later on
15+
download_url = 'https://github.com/GrgoMariani/Python-Automata-Based-Programming-Paradigm/archive/v_099.tar.gz', # I explain this later on
1616
keywords = ['Automata', 'Paradigm', 'Finite', 'State', 'Machine', 'yEd', 'Graph', 'Graphs', 'Behaviour'],
1717
classifiers=[
1818
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)