Skip to content
Snippets Groups Projects
Select Git revision
  • cc3fc7fa7cbe05f36a65e16daa5347fc94e44239
  • main default protected
  • test-10rc4
  • test-pytango-10rc2
  • bassa-main-patch-68330
  • fix-hfd5-close-error
  • offer-ports-constant
  • fix-timestamps-refactor-matrix-construction
  • bugfixes
  • fix-bst-dimensions
  • fix-bsts
  • L2SS-1465-add-bst-metadata
  • L2SS-1464-add-antennafield-to-filename
  • L2SS-1451-simplify-cmdline
  • L2SS-1425-dont-rewrite-whole-dict
  • testing-specify-file
  • also-record-tilebeam-tracking-enabled
  • dont-modulo-16
  • remove-parse-device-attributes
  • support-higher-gn-indices
  • L2SS-1080_get_statistics_writer_package_version
  • v0.23
  • v0.22.3 protected
  • v0.22.dev4 protected
  • v0.22.dev3 protected
  • v0.22.2 protected
  • v0.22.1 protected
  • v0.22.dev2 protected
  • v0.22
  • v0.22.dev1 protected
  • v0.22.dev0 protected
  • v0.21
  • v0.21.dev6 protected
  • v0.21.dev5 protected
  • v0.21.dev4 protected
  • v0.21.dev3 protected
  • v0.21.dev2 protected
  • v0.21.dev1 protected
  • v0.21.dev0 protected
  • v0.20
  • v0.20.dev1 protected
41 results

setup.cfg

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    setup.cfg 1.51 KiB
    [metadata]
    name = lofar-station-client
    description = Client library for using Tango Station Control
    author="Mevius"
    author_email="mol@astron.nl"
    long_description = file: README.md
    long_description_content_type = text/markdown
    url = https://git.astron.nl/lofar2.0/lofar-station-client
    license = Apache License 2.0
    # Select from: https://pypi.org/classifiers/
    classifiers =
        Development Status :: 3 - Alpha
        Environment :: Console
        Environment :: No Input/Output (Daemon)
        Intended Audience :: Developers
        Intended Audience :: Science/Research
        License :: OSI Approved :: Apache Software License
        Operating System :: OS Independent
        Programming Language :: Python
        Programming Language :: Python :: 3
        Programming Language :: Python :: 3 :: Only
        Programming Language :: Python :: 3.9
        Programming Language :: Python :: 3.10
        Programming Language :: Python :: 3.11
        Programming Language :: Python :: 3.12
        Topic :: Scientific/Engineering
        Topic :: Scientific/Engineering :: Astronomy
    
    [options]
    include_package_data = true
    packages = find:
    python_requires = >=3.9
    install_requires = file: requirements.txt
    
    [options.extras_require]
    tango = file: requirements-tango.txt
    
    [options.entry_points]
    console_scripts =
        l2ss-statistics-reader = lofar_station_client.statistics.reader:main
        l2ss-statistics-writer = lofar_station_client.statistics.writer.entry:main
    
    [flake8]
    max-line-length = 88
    extend-ignore = E203
    filename = *.py
    exclude=build,.venv,.git,.tox,dist,docs,*lib/python*,*egg,_version.py