reformat, add setup.py

This commit is contained in:
2020-12-27 09:21:30 -05:00
parent 5c295ab1d8
commit 89ce04d3d1
18 changed files with 107 additions and 87 deletions

13
setup.py Normal file
View File

@@ -0,0 +1,13 @@
from setuptools import setup
setup(
name="parler-api",
version="1.0",
description="Reverse engineered Parler API",
author="d0nk",
author_email="",
packages=["parler_api"],
install_requires=[
"requests",
]
)