Skip to content
Snippets Groups Projects
Select Git revision
  • ebae4a402769277a7e6667fe8c5ee941af84304b
  • master default protected
  • v0.0.41
  • v0.0.40
  • v0.0.39
  • v0.0.38
  • v0.0.37
  • v0.0.36
  • v0.0.35
  • v0.0.34
  • v0.0.33
  • v0.0.32
  • v0.0.31
  • v0.0.30
  • v0.0.29
  • v0.0.28
  • v0.0.27
  • v0.0.26
  • v0.0.25
  • v0.0.24
  • v0.0.23
  • v0.0.22
22 results

setup.cfg

Blame
  • setup.cfg 1.13 KiB
    [metadata]
    name = CADET-RDM
    version = 0.0.2
    author = Ronald Jäpel
    author_email = r.jaepel@fz-juelich.de
    description = A solution for research data management
    long_description = file: README.md
    long_description_content_type = text/markdown
    url = https://jugit.fz-juelich.de/IBG-1/ModSim/cadet/CADET-RDM
    project_urls =
        Bug Tracker = https://jugit.fz-juelich.de/IBG-1/ModSim/cadet/CADET-RDM/Issues
    classifiers =
        Programming Language :: Python :: 3
        License :: OSI Approved :: GNU General Public License v3 (GPLv3)
        Operating System :: OS Independent
    
    [options]
    packages = find:
    python_requires = >=3.8
    install_requires =
        gitpython>=3.1
        git-lfs
        click
        tabulate
        pandas
    
    include_package_data = True
    
    [options.entry_points]
    console_scripts =
        cadet-rdm = cadetrdm.cli_integration:cli
    
    [options.extras_require]
    testing =
        setuptools
        pytest
        certifi     # tries to prevent certificate problems on windows
        pre-commit  # system tests run pre-commit
        flake8      # system tests run flake8
        matplotlib
        numpy
        build
    
    
    [flake8]
    max_line_length = 88
    exclude =
        build
        dist
        .eggs
        docs/conf.py