1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-22 23:12:20 +00:00
ghostream/setup.py

13 lines
242 B
Python
Raw Normal View History

2020-09-14 09:41:20 +00:00
from setuptools import setup, find_packages
setup(
name='ghostream',
2020-09-14 13:16:09 +00:00
version='0.1.0',
2020-09-14 09:41:20 +00:00
packages=find_packages(),
include_package_data=True,
install_requires=[
'flask>=1.0.2',
'python-ldap>=3.1.0',
2020-09-14 09:41:20 +00:00
],
)