Skip to content
Snippets Groups Projects
Select Git revision
  • c8ec299ccdfa75dcd041855a819b61a1a55fa710
  • master default protected
  • develop protected
  • conda
  • 3.6.0
  • 3.5.0
  • 3.4.2
  • 3.4.1
  • 3.4.0
  • 3.4.0-rc2
  • 3.4.0-rc
  • 3.3.1
  • 3.3.1-rc
  • 3.3.0
  • 3.3.0-rc2
  • 3.3.0-rc
  • 3.2.1
  • 3.2.1-rc
  • 3.2.0
  • 3.2.0-rc
  • 3.1.1
  • 3.1.1-rc2
  • 3.1.1-rc
  • 3.1.0
24 results

objects.inv

Blame
  • setup.py NaN GiB
    from setuptools import setup
    setup(
        name = 'CLI',
        url = 'https://git.scicore.unibas.ch/zavolan_group/tools/priming-site-predictor/-/tree/main/CLI',
        author = 'Robin_Christen',
        author_email = 'robin.christen@stud.unibas.ch',
        description = 'Command-Line Interface',
        license = 'MIT,',
        version = '0.1.0',
        packages = ['pycli'],
        entry_points = {
            'console_scripts': [
                'pycli = pycli.__main__:main'
            ]
        })