Skip to content
Snippets Groups Projects
Select Git revision
  • ae202ddf2ce825fa4e2372361d04586fe7852ea7
  • main default protected
  • make_oidc_aud_configurable
  • 187_fix_agnpy
  • helm-chart
  • esap-general#159
  • nico-reviewing-async
  • feature/update-uws-auth
  • SDC-596/fix-internal-server-no-datasets
  • fix-query-errors
  • feature/ida-dekstop-records
  • merge-master
  • feature/better_logs_and_mocks
  • adex-settings-to-configuration
  • astron-vo-quick-fix
  • 69_add_diracIAM
  • sdc380-aladin-cone-search
  • esap-gateway-query
  • esap-general#11
  • esap-general#51
  • esap-api-dirac
  • esap-gateway-release-0_2_0
  • esap-gateway-release_0_1_1
  • esap-gateway-release_0_1_0
24 results

serializers.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    setup.py 1.33 KiB
    #!/usr/bin/env python
    
    import sys
    
    from setuptools import setup, find_packages
    
    # prevent unnecessary installation of pytest-runner
    needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
    pytest_runner = ['pytest-runner'] if needs_pytest else []
    
    setup(name="lmc_base_classes",
          description="Element Base Classes - Evolutionary Prototype",
          author="SKA Team",
          packages=find_packages(),
          include_package_data=True,
          scripts=["scripts/gen_csv_info.py",
                   "scripts/purge_xmi_tree.py",
                   "scripts/elt_ctl.py",
                   ],
          url='https://www.skatelescope.org/',
          classifiers=[
              "Development Status :: 3 - Alpha",
              "Intended Audience :: Developers",
              "License :: Other/Proprietary License",
              "Operating System :: OS Independent",
              "Programming Language :: Python",
              "Topic :: Software Development :: Libraries :: Python Modules",
              "Topic :: Scientific/Engineering :: Astronomy"],
          platforms=["OS Independent"],
          setup_requires=[] + pytest_runner,
          install_requires=[
              "enum34",
              "argparse",
              "future"
          ],
          tests_require=[
              "coverage",
              "pytest",
              "pytest-cov",
              "pytest-xdist"
          ],
          keywords="lmc base classes ska",
          zip_safe=False)