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.
@@ -0,0 +1,5 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 bilibili @果冻猫猫丶
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy...
@@ -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]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ """
2
+ toyoko-tracker。
3
+ """
4
+ from importlib.metadata import version, PackageNotFoundError
5
+
6
+ try:
7
+ __version__ = version("toyoko-tracker")
8
+ except PackageNotFoundError:
9
+ __version__ = "0.0.0+local"
10
+
11
+ __all__ = ["__version__"]
@@ -0,0 +1,7 @@
1
+ """
2
+ 支持 `python -m toyoko_tracker` 启动。
3
+ """
4
+ from .app import main
5
+
6
+ if __name__ == "__main__":
7
+ main()