-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.42 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
import pathlib
from setuptools import setup
from setuptools import find_packages
here = pathlib.Path(__file__).parent.resolve()
# long_description = (here / "README.md").read_text(encoding="utf-8")
license = "Apache Software License 2.0"
description = """Simple, Fast, Powerful and Easily extensible python package
for extracting patterns from text, with over than 60 predefined Regular
Expressions."""
long_description = description
keywords = [
"patterns extraction", "Regex", "visualization annotations",
"regular-expression", "information-extraction"
]
install_requires = ["regex"]
setup_requires = []
tests_require = []
setup(
name="patterns-finder",
version="1.0.1",
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
description=description,
long_description=long_description,
url="https://github.com/benouinirachid/patterns-finder",
author="Rachid Benouini",
keywords=keywords,
author_email="[email protected]",
license=license,
install_requires=install_requires,
setup_requires=setup_requires,
test_suite="tests",
include_package_data=True,
tests_require=tests_require,
packages=find_packages(),
zip_safe=False,
)