-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 844 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
"""Setup to install Python Finite State Machine."""
from distutils.core import setup
setup(name='btcde',
version='1.0',
py_modules=['pyfsm'],
install_requires=[],
description='Simple Finite State Machine implementation in Python 3.',
url='https://github.com/nourchawich/pyfsm',
author='Nour Chawich',
author_email='[email protected]',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application '
'Frameworks',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6', ],
keywords='finite state machine fsm',
)