mirror of
https://github.com/simon987/parler-tricks.git
synced 2025-04-04 08:23:04 +00:00
14 lines
244 B
Python
14 lines
244 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="parler_api",
|
|
version="1.0",
|
|
description="Reverse engineered Parler API",
|
|
author="d0nk",
|
|
author_email="",
|
|
packages=["parler"],
|
|
install_requires=[
|
|
"requests",
|
|
]
|
|
)
|