-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (29 loc) · 952 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
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup, find_packages
import smachine
METADATA = dict(
name='smachine',
version=smachine.__version__,
author='Alen Mujezinovic',
author_email='[email protected]',
description='Simple finite state machine.',
url='https://github.com/caffeinehit/smachine',
keywords='finite state machine fsm',
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: MacOS X',
'Environment :: Web Environment',
'Environment :: Other Environment',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
packages=find_packages(),
test_suite='smachine.tests',
)
if __name__ == '__main__':
setup(**METADATA)