forked from jbarbadillo/pyFSM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (17 loc) · 687 Bytes
/
setup.py
File metadata and controls
17 lines (17 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
setup(
name = 'pyFSM',
version='1.0',
packages = ['pyfsm'],
license = 'AGPL v3',
description = 'FSM for event driven applications',
url = 'https://github.com/jbarbadillo/pyFSM',
keywords = ['fsm', 'state-machine'],
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
)