forked from ScatterHQ/machinist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (42 loc) · 1.91 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# Copyright Hybrid Logic Ltd. See LICENSE file for details.
from inspect import cleandoc
from setuptools import setup
__version__ = "0.1"
setup(
name="machinist",
version=__version__,
packages=["machinist", "machinist.test"],
description=cleandoc("""
Machinist is a tool for building finite state machines.
"""),
long_description=cleandoc("""
A finite state machine maps simple, symbolic inputs to simple, symbolic
outputs. In this context, symbolic means that nothing differentiates
the values from each other apart from their identity.
The mapping from inputs to outputs also includes definitions for state
transitions. The current state of the machine changes to a new value
each time an input is mapped to an output (though the new value may be
the same as the old value).
"""),
url="https://github.com/hybridcluster/machinist",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
# General classifiers to indicate "this project supports Python 2" and
# "this project supports Python 3".
"Programming Language :: Python :: 2",
# More specific classifiers to indicate more precisely which versions
# of those languages the project supports.
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=["zope.interface>=3.6.0", "twisted>=13.1", "eliot>=0.3.0"],
test_suite="machinist",
)