adauto 0.2.0__py3-none-any.whl

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.
adauto/__init__.py ADDED
@@ -0,0 +1,2 @@
1
+ """adauto — binary distribution (compiled with Nuitka)."""
2
+ __version__ = "0.2.0"
@@ -0,0 +1,6 @@
1
+ """Platform adapters for adauto."""
2
+ from .reddit import RedditPoster
3
+ from .devto import DevtoPoster
4
+ from .twitter import TwitterPoster
5
+
6
+ __all__ = ["RedditPoster", "DevtoPoster", "TwitterPoster"]
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: adauto
3
+ Version: 0.2.0
4
+ Summary: Developer marketing automation — pulse scanning, ethics filter, multi-platform posting
5
+ License: Proprietary
6
+ Requires-Python: >=3.11
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: click>=8.1
9
+ Requires-Dist: rich>=13.7
10
+ Requires-Dist: httpx>=0.27
11
+ Requires-Dist: tenacity>=8.2
12
+ Requires-Dist: praw>=7.7
13
+ Requires-Dist: tweepy>=4.14
14
+ Requires-Dist: requests>=2.31
15
+ Provides-Extra: dev
16
+ Requires-Dist: pytest>=8.0; extra == "dev"
17
+ Requires-Dist: ruff>=0.4; extra == "dev"
18
+ Requires-Dist: mypy>=1.9; extra == "dev"
@@ -0,0 +1,7 @@
1
+ adauto/__init__.py,sha256=HJ05kL-YtIFKU2w27o6aKhnFyKve6xsniTFkxoBTqXk,83
2
+ adauto/platforms/__init__.py,sha256=nA4E6rJZ7M5iOBLZW2IZSg-pOThrzwWGLa4SpBbg01c,195
3
+ adauto-0.2.0.dist-info/METADATA,sha256=2YEe2SzbwKn3AZsXT2N34PNFT0Z7tlRaq4fhhwweCv8,569
4
+ adauto-0.2.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
5
+ adauto-0.2.0.dist-info/entry_points.txt,sha256=fvTr6kGO8hbTr4CYCaHIoVlEKD4HVg_f5WpjSNgrytE,43
6
+ adauto-0.2.0.dist-info/top_level.txt,sha256=jMcUpjAcKuHBpBD8V0k5ur7l0BjNdSag-L7cIVpXzB0,7
7
+ adauto-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ adauto = adauto.cli:main
@@ -0,0 +1 @@
1
+ adauto