Skip to content
Snippets Groups Projects
Select Git revision
  • ad7d35e75b4240f64ef8f8686df280eedb23df6d
  • master default protected
  • 9.0
  • 8.0
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • nt-tools
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
  • v8.0.1982
  • v8.0.1980
  • v8.0.1978
  • v8.0.1976
  • v8.0.1974
  • v8.0.1972
  • v8.0.1970
  • v8.0.1968
  • v8.0.1966
41 results

builtin_functions.h

Blame
  • setup.py 1.07 KiB
    #!/usr/bin/env python
    
    # How to update:
    # 0. source the virtualenv
    # 1. Create a new tag on gitlab and find the download url (archive.tar.gz) for that tag
    # 2. Update the version in setup()
    # 3. run `python setup.py sdist` and test with tar.gz in dist folder
    # 4. run `twine upload dist/YOUR_NEWLY_CREATED_ARCHIVE.tar.gz`
    
    from distutils.core import setup
    
    setup(
        name='kattcmd',
        packages=['kattcmd', 'kattcmd.commands'],
        version='0.0.4',
        description='Kattis solution management CLI written in python',
        author='Henrik Adolfsson',
        author_email='anting004@gmail.com',
        url='https://git.lysator.liu.se/catears/kattis-command',
        download_url='https://git.lysator.liu.se/catears/kattis-command/repository/0.0.2/archive.tar.gz',
        keywords=['kattis', 'cli', 'competitive programming'],
        install_requires=['requests', 'click', 'pydash'],
        python_requires='>=3.4',
        scripts=['bin/kattcmd'],
        package_dir={
            'kattcmd.commands': 'kattcmd/commands'
        },
        package_data={
            'kattcmd.commands': ['default_templates/*']
        },
        classifiers=[]
    )