mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-15 23:23:17 +00:00
9 lines
174 B
Python
Executable file
9 lines
174 B
Python
Executable file
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='selfprivacy_api',
|
|
version='1.1.0',
|
|
packages=find_packages(),
|
|
scripts=['selfprivacy_api/app.py',],
|
|
)
|