selfprivacy-rest-api/setup.py
Inex Code 4e7261c9c4 fix(dns-records): Fix DKIM parser
Previously API relied on client to parse DKIM DNS string, as it was a
separate endpoint. But now client blindly trusts the API, but parser
was not migrated over to the API.
2023-01-16 18:41:54 +03:00

11 lines
188 B
Python
Executable file

from setuptools import setup, find_packages
setup(
name="selfprivacy_api",
version="2.1.1",
packages=find_packages(),
scripts=[
"selfprivacy_api/app.py",
],
)