phantomflow 0.1.0__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.
- phantomflow-0.1.0/.github/workflows/pypi-publish.yml +31 -0
- phantomflow-0.1.0/.gitignore +143 -0
- phantomflow-0.1.0/.python-version +1 -0
- phantomflow-0.1.0/LICENSE +21 -0
- phantomflow-0.1.0/PKG-INFO +35 -0
- phantomflow-0.1.0/README.md +3 -0
- phantomflow-0.1.0/pyproject.toml +23 -0
- phantomflow-0.1.0/src/phantomflow/__init__.py +0 -0
- phantomflow-0.1.0/src/phantomflow/cli/__init__.py +2 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
publish:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
permissions:
|
|
12
|
+
id-token: write # required for Trusted Publishing (OIDC)
|
|
13
|
+
contents: read
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- name: Checkout repository
|
|
17
|
+
uses: actions/checkout@v4
|
|
18
|
+
|
|
19
|
+
- name: Set up Python
|
|
20
|
+
uses: actions/setup-python@v5
|
|
21
|
+
with:
|
|
22
|
+
python-version: "3.13"
|
|
23
|
+
|
|
24
|
+
- name: Install build tool
|
|
25
|
+
run: python -m pip install --upgrade build
|
|
26
|
+
|
|
27
|
+
- name: Build distribution
|
|
28
|
+
run: python -m build
|
|
29
|
+
|
|
30
|
+
- name: Publish package to PyPI
|
|
31
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
# ------------------------------
|
|
2
|
+
# Python bytecode / cache
|
|
3
|
+
# ------------------------------
|
|
4
|
+
__pycache__/
|
|
5
|
+
*.py[codz]
|
|
6
|
+
*$py.class
|
|
7
|
+
|
|
8
|
+
# ------------------------------
|
|
9
|
+
# C extensions
|
|
10
|
+
# ------------------------------
|
|
11
|
+
*.so
|
|
12
|
+
|
|
13
|
+
# ------------------------------
|
|
14
|
+
# Distribution / packaging
|
|
15
|
+
# ------------------------------
|
|
16
|
+
.Python
|
|
17
|
+
build/
|
|
18
|
+
dist/
|
|
19
|
+
downloads/
|
|
20
|
+
eggs/
|
|
21
|
+
.eggs/
|
|
22
|
+
lib/
|
|
23
|
+
lib64/
|
|
24
|
+
parts/
|
|
25
|
+
sdist/
|
|
26
|
+
var/
|
|
27
|
+
wheels/
|
|
28
|
+
share/python-wheels/
|
|
29
|
+
*.egg-info/
|
|
30
|
+
.installed.cfg
|
|
31
|
+
*.egg
|
|
32
|
+
MANIFEST
|
|
33
|
+
|
|
34
|
+
# ------------------------------
|
|
35
|
+
# Virtual environments
|
|
36
|
+
# ------------------------------
|
|
37
|
+
.env
|
|
38
|
+
.envrc
|
|
39
|
+
.venv
|
|
40
|
+
venv/
|
|
41
|
+
env/
|
|
42
|
+
ENV/
|
|
43
|
+
env.bak/
|
|
44
|
+
venv.bak/
|
|
45
|
+
|
|
46
|
+
# ------------------------------
|
|
47
|
+
# Installer logs
|
|
48
|
+
# ------------------------------
|
|
49
|
+
pip-log.txt
|
|
50
|
+
pip-delete-this-directory.txt
|
|
51
|
+
|
|
52
|
+
# ------------------------------
|
|
53
|
+
# Unit test / coverage
|
|
54
|
+
# ------------------------------
|
|
55
|
+
htmlcov/
|
|
56
|
+
.tox/
|
|
57
|
+
.nox/
|
|
58
|
+
.coverage
|
|
59
|
+
.coverage.*
|
|
60
|
+
.cache
|
|
61
|
+
nosetests.xml
|
|
62
|
+
coverage.xml
|
|
63
|
+
*.cover
|
|
64
|
+
*.py,cover
|
|
65
|
+
.pytest_cache/
|
|
66
|
+
.hypothesis/
|
|
67
|
+
|
|
68
|
+
# ------------------------------
|
|
69
|
+
# Type checkers / linters
|
|
70
|
+
# ------------------------------
|
|
71
|
+
.mypy_cache/
|
|
72
|
+
.dmypy.json
|
|
73
|
+
.pyre/
|
|
74
|
+
.pytype/
|
|
75
|
+
.ruff_cache/
|
|
76
|
+
|
|
77
|
+
# ------------------------------
|
|
78
|
+
# Jupyter / IPython
|
|
79
|
+
# ------------------------------
|
|
80
|
+
.ipynb_checkpoints
|
|
81
|
+
profile_default/
|
|
82
|
+
ipython_config.py
|
|
83
|
+
|
|
84
|
+
# ------------------------------
|
|
85
|
+
# Django / Flask / Scrapy
|
|
86
|
+
# ------------------------------
|
|
87
|
+
*.log
|
|
88
|
+
local_settings.py
|
|
89
|
+
db.sqlite3
|
|
90
|
+
db.sqlite3-journal
|
|
91
|
+
instance/
|
|
92
|
+
.webassets-cache
|
|
93
|
+
.scrapy
|
|
94
|
+
|
|
95
|
+
# ------------------------------
|
|
96
|
+
# Documentation
|
|
97
|
+
# ------------------------------
|
|
98
|
+
docs/_build/
|
|
99
|
+
site/
|
|
100
|
+
|
|
101
|
+
# ------------------------------
|
|
102
|
+
# Build tools
|
|
103
|
+
# ------------------------------
|
|
104
|
+
.pybuilder/
|
|
105
|
+
target/
|
|
106
|
+
|
|
107
|
+
# ------------------------------
|
|
108
|
+
# Package managers / env tools
|
|
109
|
+
# ------------------------------
|
|
110
|
+
.pdm-python
|
|
111
|
+
.pdm-build/
|
|
112
|
+
.pixi/
|
|
113
|
+
__pypackages__/
|
|
114
|
+
|
|
115
|
+
# ------------------------------
|
|
116
|
+
# Celery
|
|
117
|
+
# ------------------------------
|
|
118
|
+
celerybeat-schedule
|
|
119
|
+
celerybeat.pid
|
|
120
|
+
|
|
121
|
+
# ------------------------------
|
|
122
|
+
# Editors / IDEs
|
|
123
|
+
# ------------------------------
|
|
124
|
+
.vscode/
|
|
125
|
+
.idea/
|
|
126
|
+
.spyderproject
|
|
127
|
+
.spyproject
|
|
128
|
+
.ropeproject
|
|
129
|
+
|
|
130
|
+
# ------------------------------
|
|
131
|
+
# Misc
|
|
132
|
+
# ------------------------------
|
|
133
|
+
cython_debug/
|
|
134
|
+
.pypirc
|
|
135
|
+
|
|
136
|
+
# Cursor AI editor
|
|
137
|
+
.cursorignore
|
|
138
|
+
.cursorindexingignore
|
|
139
|
+
|
|
140
|
+
# Marimo
|
|
141
|
+
marimo/_static/
|
|
142
|
+
marimo/_lsp/
|
|
143
|
+
__marimo__/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.13
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 MakdiNet 🕸️
|
|
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,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: phantomflow
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: There’s a new ghost in town!
|
|
5
|
+
Project-URL: Homepage, https://github.com/makdinet/phantomflow
|
|
6
|
+
Project-URL: Issues, https://github.com/makdinet/phantomflow/issues
|
|
7
|
+
Author-email: Nitish <nitishrn1993@example.com>
|
|
8
|
+
License: MIT License
|
|
9
|
+
|
|
10
|
+
Copyright (c) 2026 MakdiNet 🕸️
|
|
11
|
+
|
|
12
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
14
|
+
in the Software without restriction, including without limitation the rights
|
|
15
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
17
|
+
furnished to do so, subject to the following conditions:
|
|
18
|
+
|
|
19
|
+
The above copyright notice and this permission notice shall be included in all
|
|
20
|
+
copies or substantial portions of the Software.
|
|
21
|
+
|
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
25
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
27
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
28
|
+
SOFTWARE.
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Requires-Python: >=3.13
|
|
31
|
+
Description-Content-Type: text/markdown
|
|
32
|
+
|
|
33
|
+
# PhantomFlow 👻
|
|
34
|
+
|
|
35
|
+
This project is currently being cooked up 🧪. It is an AI agent system for blogging websites. The project is still in the "scribbling ideas on napkins" 📝 phase, but the vision is clear: robots 🤖 handle the blogging, while creators handle the creative dreaming ✨.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# PhantomFlow 👻
|
|
2
|
+
|
|
3
|
+
This project is currently being cooked up 🧪. It is an AI agent system for blogging websites. The project is still in the "scribbling ideas on napkins" 📝 phase, but the vision is clear: robots 🤖 handle the blogging, while creators handle the creative dreaming ✨.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "phantomflow"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "There’s a new ghost in town!"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.13"
|
|
7
|
+
license = { file = "LICENSE" }
|
|
8
|
+
dependencies = []
|
|
9
|
+
authors = [{ name = "Nitish", email = "nitishrn1993@example.com" }]
|
|
10
|
+
|
|
11
|
+
[build-system]
|
|
12
|
+
requires = ["hatchling"]
|
|
13
|
+
build-backend = "hatchling.build"
|
|
14
|
+
|
|
15
|
+
[tool.hatch.build.targets.wheel]
|
|
16
|
+
packages = ["src/phantomflow"]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/makdinet/phantomflow"
|
|
20
|
+
Issues = "https://github.com/makdinet/phantomflow/issues"
|
|
21
|
+
|
|
22
|
+
[project.scripts]
|
|
23
|
+
phantomflow-cli = "phantomflow.cli:main"
|
|
File without changes
|