Skip to content
Snippets Groups Projects
Select Git revision
  • d7caf5113db0886079c8ceff7644f5976b4e1ccf
  • master default protected
  • dither_on_off_disabled
  • yocto
  • pypcc2
  • pypcc3
  • 2020-12-07-the_only_working_copy
  • v2.1
  • v2.0
  • v1.0
  • v0.9
  • Working-RCU_ADC,ID
  • 2020-12-11-Holiday_Season_release
13 results

i2c.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    setup.py 507 B
    # SPDX-License-Identifier: Apache-2.0
    
    from setuptools import setup
    
    
    def get_requirements() -> str:
        with open("requirements.txt") as reqs:
            return reqs.read().split("\n")
    
    setup(
        name="atdb-csv-gen",
        version="1.0.0",
        description="Tool to generate csv files for ATDB",
        author="ASTRON",
        packages=["atdb_csv_gen"],
        install_requires=get_requirements(),
        scripts=["bin/atdb_csv_gen"],
        license="Apache License, Version 2.0",
        zip=False,
        python_requires=">=3.7"
    )