""" Dao setup """ from setuptools import setup setup( name="Building Dao", version="1.0", url="https://max-ics.earthlab.lu/gitlab/building-knowledge-centre/building-dao", license="BSD", author="Marc-André SANTUNE", author_email="marc-andre.santune@earthlab.lu", description="Library for retrieving / uploading building information", packages=[], zip_safe=False, keywords="dao bkc building-knowledge-centre building", include_package_data=True, platforms="any", install_requires=["requests"], classifiers=[ "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", ], )