forked from qntm/greenery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 687 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
from greenery import __version__
setup(
name = "greenery",
version = __version__,
tests_require = [ "pytest" ],
packages = [ "greenery" ],
package_dir = { "greenery": "greenery" },
author = "qntm",
author_email = "qntm <qntm@users.noreply.github.com>",
description = "Greenery allows manipulation of regular expressions as finite state machines",
license = "MIT License",
keywords = "re regex regexp regular expression deterministic finite state machine automaton fsm dfsm fsa dfsa greenery",
url = "https://github.com/qntm/greenery",
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.3",
],
)