Initial commit
Hugo/PaperMod static site tracking 13 conferences and 7 journals for edge and cloud systems research. Includes FullCalendar deadline view, ICORE/SCImago rankings, DBLP paper digest pipeline, and Python fetch/generate scripts. PaperMod added as a git submodule.
This commit is contained in:
28
pyproject.toml
Normal file
28
pyproject.toml
Normal file
@@ -0,0 +1,28 @@
|
||||
[project]
|
||||
name = "publish-assistant"
|
||||
version = "0.1.0"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"requests>=2.31.0",
|
||||
"beautifulsoup4>=4.12.0",
|
||||
"lxml>=4.9.0",
|
||||
"pyyaml>=6.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
pa-fetch-icore = "publish_assistant.fetch_icore:main"
|
||||
pa-fetch-scimago = "publish_assistant.fetch_scimago:main"
|
||||
pa-fetch-deadlines = "publish_assistant.fetch_deadlines:main"
|
||||
pa-fetch-papers = "publish_assistant.fetch_papers:main"
|
||||
pa-fetch-best-papers = "publish_assistant.fetch_best_papers:main"
|
||||
pa-generate = "publish_assistant.generate_content:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/publish_assistant"]
|
||||
|
||||
[dependency-groups]
|
||||
dev = []
|
||||
Reference in New Issue
Block a user