-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 835 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (32 loc) · 835 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "policy-diff-analyst"
version = "1.4.0"
description = "Compare Chinese policy documents and produce structured analysis reports"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"python-docx>=1.1.0",
"openpyxl>=3.1.0",
"matplotlib>=3.8.0",
"plotly>=5.18.0",
"pypdf>=4.0.0",
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
"lxml>=5.0.0",
"jieba>=0.42.1",
"pandas>=2.1.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0.0", "pytest-cov>=4.1.0"]
[project.scripts]
pda = "scripts.cli:main"
[tool.setuptools.packages.find]
include = ["scripts*"]
[tool.setuptools.package-data]
"*" = ["*.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]