-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
39 lines (37 loc) · 940 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
33
34
35
36
37
38
39
from __future__ import annotations
from setuptools import setup
setup(
name="greenery",
version="4.2.2",
tests_require=["pytest"],
packages=["greenery"],
package_dir={"greenery": "greenery"},
author="qntm",
author_email="qntm <[email protected]>",
description="Greenery allows manipulation of regular expressions",
license="MIT License",
keywords=" ".join(
[
"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.8",
],
)