-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 827 Bytes
/
setup.py
File metadata and controls
38 lines (32 loc) · 827 Bytes
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
from setuptools import setup, find_packages
PACKAGE_VERSION = "0.2"
MINOR_RELEASE = "0"
setup(
name="deep_parser",
version=f"{PACKAGE_VERSION}.{MINOR_RELEASE}",
packages=find_packages(where="src"), # include all packages under src
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"numpy",
"PyMuPDF",
"anytree",
"pyyaml",
"beautifulsoup4",
"lxml",
"requests-html",
"readable-content",
"func_timeout",
],
entry_points={
'console_scripts': [
'download-chromium = deep_parser:download_pypeeter_chromium',
]
},
author="",
author_email="",
description="This package contains parsing utilities for text extraction",
classifiers=[
""
]
)