mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-10-31 17:17:17 +00:00
11 lines
188 B
Python
Executable file
11 lines
188 B
Python
Executable file
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="selfprivacy_api",
|
|
version="3.0.0",
|
|
packages=find_packages(),
|
|
scripts=[
|
|
"selfprivacy_api/app.py",
|
|
],
|
|
)
|