chore: scaffold devranta project with Makefile, CI workflow, and async API client stub

This commit is contained in:
2024-12-02 16:41:02 +00:00
commit 7ab84098cc
26 changed files with 388 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
Metadata-Version: 2.1
Name: devranta
Version: 1.0.0
Summary: Async devRant API client made with aiohttp.
Author: retoor
Author-email: retoor@molodetz.nl
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: aiohttp
Requires-Dist: dataset
+12
View File
@@ -0,0 +1,12 @@
pyproject.toml
setup.cfg
src/devranta/__init__.py
src/devranta/__main__.py
src/devranta/api.py
src/devranta/tests.py
src/devranta.egg-info/PKG-INFO
src/devranta.egg-info/SOURCES.txt
src/devranta.egg-info/dependency_links.txt
src/devranta.egg-info/entry_points.txt
src/devranta.egg-info/requires.txt
src/devranta.egg-info/top_level.txt
@@ -0,0 +1 @@
+2
View File
@@ -0,0 +1,2 @@
[console_scripts]
devranta = devranta.__main__:main
+3
View File
@@ -0,0 +1,3 @@
requests
aiohttp
dataset
+1
View File
@@ -0,0 +1 @@
devranta