Skip to content
Snippets Groups Projects
Select Git revision
  • 7e7702611bcbdcff8b658022a951b8573d32f714
  • 5.4 default protected
  • 5.5
  • dev/5.5
  • dev/5.4
  • dev/5.3_downgrade
  • feature/experimenttime_hack
  • 5.3 protected
  • _IntenSelect5.3
  • IntenSelect5.3
  • 4.27 protected
  • 4.26 protected
  • 5.0 protected
  • 4.22 protected
  • 4.21 protected
  • UE5.4-2024.1
  • UE5.4-2024.1-rc1
  • UE5.3-2023.1-rc3
  • UE5.3-2023.1-rc2
  • UE5.3-2023.1-rc
20 results

ReplicatedMotionControllerComponent.cpp

Blame
  • setup.py 1.28 KiB
    from setuptools import setup, find_packages
    
    with open("README.md", "r", encoding="utf-8") as fh:
        long_description = fh.read()
    
    setup(name='wzl-udi',
          version='8.3.0',
          url='https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python',
          project_urls={
              "Bug Tracker": "https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python/-/issues",
          },
          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 based on the SensOr Interfacing Language (SOIL).',
          package_dir={'wzl': 'src'},
          packages=['wzl.http', 'wzl.soil', 'wzl.utils'],
          long_description=long_description,
          long_description_content_type="text/markdown",
          classifiers=[
              "Programming Language :: Python :: 3",
              "License :: OSI Approved :: MIT License",
              "Operating System :: OS Independent",
          ],
          install_requires=['aiohttp~=3.9.1',
                            'Deprecated~=1.2.13',
                            'nest-asyncio~=1.5.6',
                            'strict-rfc3339==0.7',
                            'wzl-mqtt~=2.5.3',
                            'rdflib~=7.0.0'
                            ],
          zip_safe=False)