selfprivacy-rest-api/setup.py
Inex Code 7935de0fe1 Migrate to FastAPI (#13)
Co-authored-by: inexcode <inex.code@selfprivacy.org>
Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api/pulls/13
2022-08-25 20:03:56 +03:00

11 lines
188 B
Python
Executable file

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