mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-23 02:42:20 +00:00
13 lines
240 B
Python
13 lines
240 B
Python
|
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',
|
||
|
],
|
||
|
)
|