toyoko-tracker 0.4.17__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- toyoko_tracker-0.4.17/LICENSE +5 -0
- toyoko_tracker-0.4.17/PKG-INFO +22 -0
- toyoko_tracker-0.4.17/README.md +0 -0
- toyoko_tracker-0.4.17/pyproject.toml +49 -0
- toyoko_tracker-0.4.17/setup.cfg +4 -0
- toyoko_tracker-0.4.17/src/toyoko_tracker/__init__.py +11 -0
- toyoko_tracker-0.4.17/src/toyoko_tracker/__main__.py +7 -0
- toyoko_tracker-0.4.17/src/toyoko_tracker/app.py +1623 -0
- toyoko_tracker-0.4.17/src/toyoko_tracker.egg-info/PKG-INFO +22 -0
- toyoko_tracker-0.4.17/src/toyoko_tracker.egg-info/SOURCES.txt +12 -0
- toyoko_tracker-0.4.17/src/toyoko_tracker.egg-info/dependency_links.txt +1 -0
- toyoko_tracker-0.4.17/src/toyoko_tracker.egg-info/entry_points.txt +2 -0
- toyoko_tracker-0.4.17/src/toyoko_tracker.egg-info/requires.txt +5 -0
- toyoko_tracker-0.4.17/src/toyoko_tracker.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: toyoko-tracker
|
|
3
|
+
Version: 0.4.17
|
|
4
|
+
Summary: Toyoko Inn Vacancy Tracker
|
|
5
|
+
Author: bilibili @果冻猫猫丶
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2025 bilibili @果冻猫猫丶
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy...
|
|
11
|
+
Project-URL: Homepage, https://example.com/
|
|
12
|
+
Project-URL: Source, https://example.com/repo
|
|
13
|
+
Project-URL: Issues, https://example.com/issues
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
Requires-Dist: flask>=2.3
|
|
18
|
+
Requires-Dist: selenium>=4.14
|
|
19
|
+
Requires-Dist: beautifulsoup4>=4.12
|
|
20
|
+
Requires-Dist: webdriver-manager>=4.0
|
|
21
|
+
Requires-Dist: requests>=2.31
|
|
22
|
+
Dynamic: license-file
|
|
File without changes
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "toyoko-tracker"
|
|
7
|
+
version = "0.4.17"
|
|
8
|
+
description = "Toyoko Inn Vacancy Tracker"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { file = "LICENSE" }
|
|
12
|
+
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "bilibili @果冻猫猫丶" }
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
# Runtime Dependencies
|
|
18
|
+
dependencies = [
|
|
19
|
+
"flask>=2.3",
|
|
20
|
+
"selenium>=4.14",
|
|
21
|
+
"beautifulsoup4>=4.12",
|
|
22
|
+
"webdriver-manager>=4.0",
|
|
23
|
+
"requests>=2.31",
|
|
24
|
+
# "win10toast>=0.9",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
# Command-Line Entry Point
|
|
28
|
+
[project.scripts]
|
|
29
|
+
toyoko-tracker = "toyoko_tracker.app:main"
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://example.com/"
|
|
33
|
+
Source = "https://example.com/repo"
|
|
34
|
+
Issues = "https://example.com/issues"
|
|
35
|
+
|
|
36
|
+
# Include src Directory in Packaging
|
|
37
|
+
[tool.setuptools]
|
|
38
|
+
package-dir = {"" = "src"}
|
|
39
|
+
|
|
40
|
+
[tool.setuptools.packages.find]
|
|
41
|
+
where = ["src"]
|
|
42
|
+
include = ["toyoko_tracker*"]
|
|
43
|
+
exclude = ["tests*"]
|
|
44
|
+
|
|
45
|
+
# [tool.setuptools.package-data]
|
|
46
|
+
# "toyoko_tracker" = ["static/*", "templates/*"]
|
|
47
|
+
|
|
48
|
+
# Development Dependencies
|
|
49
|
+
[tool.setuptools.dynamic]
|