-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First time using pip & twine, had to do some checks
- Loading branch information
1 parent
82a6ab1
commit 67220df
Showing
9 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|