1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2025-08-07 16:09:58 +02:00

Flask app

This commit is contained in:
Alexandre Iooss
2020-09-14 11:41:20 +02:00
parent a5b9bfba45
commit 372d1c4c5d
7 changed files with 114 additions and 0 deletions

12
setup.py Normal file
View File

@@ -0,0 +1,12 @@
from setuptools import setup, find_packages
setup(
name='ghostream',
version='1.0',
packages=find_packages(),
include_package_data=True,
install_requires=[
'flask>=1.1.1',
'python-ldap>=3.2.0',
],
)