-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (92 loc) · 2.39 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (92 loc) · 2.39 KB
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
100
101
102
[project]
name = "wikicfp-scanner"
dynamic = ["version"]
description = "AI-powered CLI to find the perfect academic conferences for your research papers"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Dipankar Sarkar", email = "me@dipankar.name" }
]
keywords = [
"wikicfp",
"conference",
"academic",
"research",
"paper",
"cfp",
"call-for-papers",
"claude",
"ai",
"scraper",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing :: General",
"Typing :: Typed",
]
dependencies = [
"click>=8.1.0",
"httpx>=0.27.0",
"beautifulsoup4>=4.12.0",
"lxml>=5.0.0",
"pdfplumber>=0.11.0",
"pypdf>=4.0.0",
"aiolimiter>=1.1.0",
"rich>=13.0.0",
"pydantic>=2.0.0",
"diskcache>=5.6.0",
"typing-extensions>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/dipankar/wikicfp-cli"
Documentation = "https://dipankar.github.io/wikicfp-cli/"
Repository = "https://github.com/dipankar/wikicfp-cli"
Issues = "https://github.com/dipankar/wikicfp-cli/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
"ruff>=0.3.0",
"mypy>=1.10.0",
"types-beautifulsoup4>=4.12.0",
"respx>=0.21.0",
"twine>=5.0.0",
]
mcp = [
"mcp[cli]>=1.0.0",
]
[project.scripts]
wikicfp = "wikicfp_scanner.cli:main"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/wikicfp_scanner"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
addopts = "--cov=wikicfp_scanner --cov-report=term-missing --cov-report=html --cov-fail-under=45"