agentic-reddit 0.0.1__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,42 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ build:
9
+ name: Build distribution
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-python@v5
14
+ with:
15
+ python-version: "3.x"
16
+ - name: Install build tooling
17
+ run: python -m pip install --upgrade build
18
+ - name: Build sdist and wheel
19
+ run: python -m build
20
+ - name: Upload distribution artifacts
21
+ uses: actions/upload-artifact@v4
22
+ with:
23
+ name: dist
24
+ path: dist/
25
+
26
+ publish:
27
+ name: Publish to PyPI
28
+ needs: build
29
+ runs-on: ubuntu-latest
30
+ environment:
31
+ name: pypi
32
+ url: https://pypi.org/project/agentic-reddit/
33
+ permissions:
34
+ id-token: write
35
+ steps:
36
+ - name: Download distribution artifacts
37
+ uses: actions/download-artifact@v4
38
+ with:
39
+ name: dist
40
+ path: dist/
41
+ - name: Publish to PyPI
42
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,17 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ .eggs/
6
+
7
+ # Build artifacts
8
+ build/
9
+ dist/
10
+
11
+ # Virtual environments
12
+ .venv/
13
+ venv/
14
+ env/
15
+
16
+ # OS / editor
17
+ .DS_Store
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 seongjin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentic-reddit
3
+ Version: 0.0.1
4
+ Summary: Agentic Reddit — an agentic crawler for Reddit (work in progress).
5
+ Project-URL: Homepage, https://github.com/tjdwls101010/Agentic-Reddit
6
+ Project-URL: Repository, https://github.com/tjdwls101010/Agentic-Reddit
7
+ Project-URL: Issues, https://github.com/tjdwls101010/Agentic-Reddit/issues
8
+ Author: seongjin
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: agent,agentic,crawler,reddit
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+
24
+ # Agentic Reddit
25
+
26
+ An agentic crawler for Reddit. **Work in progress.**
27
+
28
+ ## Status
29
+
30
+ This is an initial placeholder release (`0.0.1`) published to establish the PyPI
31
+ publishing pipeline via GitHub Actions trusted publishing. Real functionality is
32
+ coming soon.
33
+
34
+ ## Installation
35
+
36
+ ```bash
37
+ pip install agentic-reddit
38
+ ```
39
+
40
+ ## License
41
+
42
+ [MIT](LICENSE)
@@ -0,0 +1,19 @@
1
+ # Agentic Reddit
2
+
3
+ An agentic crawler for Reddit. **Work in progress.**
4
+
5
+ ## Status
6
+
7
+ This is an initial placeholder release (`0.0.1`) published to establish the PyPI
8
+ publishing pipeline via GitHub Actions trusted publishing. Real functionality is
9
+ coming soon.
10
+
11
+ ## Installation
12
+
13
+ ```bash
14
+ pip install agentic-reddit
15
+ ```
16
+
17
+ ## License
18
+
19
+ [MIT](LICENSE)
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "agentic-reddit"
7
+ version = "0.0.1"
8
+ description = "Agentic Reddit — an agentic crawler for Reddit (work in progress)."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "seongjin" }]
13
+ keywords = ["reddit", "crawler", "agent", "agentic"]
14
+ classifiers = [
15
+ "Development Status :: 2 - Pre-Alpha",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.9",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ ]
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/tjdwls101010/Agentic-Reddit"
28
+ Repository = "https://github.com/tjdwls101010/Agentic-Reddit"
29
+ Issues = "https://github.com/tjdwls101010/Agentic-Reddit/issues"
30
+
31
+ [tool.hatch.build.targets.wheel]
32
+ packages = ["src/agentic_reddit"]
@@ -0,0 +1,3 @@
1
+ """Agentic Reddit — an agentic crawler for Reddit (work in progress)."""
2
+
3
+ __version__ = "0.0.1"