Skip to content
Snippets Groups Projects
Select Git revision
  • 3cb067e9fda8b3e244f228f2823a2182255821a9
  • main default protected
2 results

download_and_create_venv.sh

Blame
  • setup.py 887 B
    from setuptools import setup, find_packages
    
    setup(name='wzl-udi',
          version='8.1.0',
          url='https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python',
          author='Matthias Bodenbenner',
          author_email='m.bodenbenner@wzl.mq.rwth-aachen.de',
          description='Provides REST-server, publisher-interface and serializer for the Unified Device Interface in Python.',
          package_dir={'wzl': 'src'},
          packages=['wzl.http', 'wzl.soil', 'wzl.utils'],
          long_description=open('./README.md').read(),
          install_requires=['aiohttp==3.8.1',
                            'Deprecated==1.2.13',
                            'docstring_parser==0.7.3',
                            'nest-asyncio==1.4.3',
                            'strict-rfc3339==0.7',
                            'wzl-mqtt==2.5.1',
                            'wzl-utilities==1.2.2'
                            ],
          zip_safe=False)