mirror of
https://github.com/simon987/parler-tricks.git
synced 2025-04-10 14:06:44 +00:00
14 lines
248 B
Python
14 lines
248 B
Python
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",
|
|
]
|
|
)
|