Skip to content
Snippets Groups Projects
Select Git revision
  • 61655cca35dff4a854b7e61d08908c595616efa1
  • master default protected
  • develop
  • semantic
  • auto-inflate
  • feature/aps
  • legacy protected
  • 10.0.0
  • 9.3.8
  • 9.3.7
  • 9.3.6
  • 9.3.5
  • 9.3.4
  • 9.3.3
  • 9.3.2
  • 9.3.1
  • 9.3.0
  • 9.2.0
  • 9.1.2
  • 9.1.1
  • 9.1.0
  • 9.0.1
  • 9.0.0
  • 8.2.5
  • 8.2.4
  • 8.2.3
  • 8.2.2
27 results

setup.py

Blame
  • setup.py 1.27 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='10.0.3',
          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',
                            'pytz==2024.1',
                            'wzl-mqtt~=2.6.1',
                            'rdflib~=7.0.0'
                            ],
          zip_safe=False)