-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
99 lines (83 loc) · 2.64 KB
/
pyproject.toml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[tool.poetry]
name = "orgpedia-mahmed2024"
version = "0.0.1"
description = "Datapackage containing orders of Medical Education and Drugs Department Government of Maharashtra."
authors = ["Orgpedia Foundation <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["information extraction", "data package", "government data"]
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
]
packages = [ { include = "orgpedia_mahmed2024", from = "export" } ]
include = [ "export/orgpedia_mahmed2024/*" ]
[tool.poetry.urls]
"homepage" = "https://www.orgpedia.in/"
"repository" = "https://github.com/orgpedia/mahmed2024"
"data issues" = "https://github.com/orgpedia/mahmed2024/discussions"
[tool.poetry.dependencies]
python = ">3.8.1 <4.0"
# this is a datapackage should not have any dependency as we are publishing data
# dependencies for running the flow are in group.dev.dependencies
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pdfplumber = "^0.9.0"
requests = "^2.31.0"
pytesseract = "^0.3.10"
docint = {git = "https://github.com/mukundesh/docInt.git"}
ruff = "^0.2.2"
pre-commit = "^2.21.0"
translateindic = {git = "https://github.com/orgpedia/translateIndic"}
orgpedia = {git = "https://github.com/orgpedia/orgpedia.git"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
# Enable Pyflakes `E` and `F` codes by default.
lint.select = ["E", "F", "W", "I001"]
lint.ignore = []
# Allow autofix for all enabled rules (when `--fix`) is provided.
lint.fixable = ["I001"] # fix only isort issues
lint.unfixable = []
# Exclude a variety of commonly ignored directories.
exclude = [
".git",
".mypy_cache",
".nox",
".ruff_cache",
".tox",
"__pypackages__",
"dist",
"node_modules",
"venv",
".bak",
"input",
"output",
"logs",
"conf",
"export",
"models",
"documents",
"data_packages",
"websites",
"page_images",
"html",
]
lint.per-file-ignores = {}
# Same as Black.
line-length = 100
# Allow unused variables when underscore-prefixed.
#dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
# Assume Python 3.8
target-version = "py38"