import os from setuptools import setup, find_packages # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup(name='djangoldp_notifications', version='0.0.1', description='djangoldp package for notifications data models', url='https://git.happy-dev.fr/startinblox/djangoldp-packages/djangoldp-notifications', author="Startin'blox", author_email='matthieu@happy-dev.fr', license='MIT', packages=find_packages(), zip_safe=False)