Skip to content
Snippets Groups Projects
Select Git revision
  • c0f85b691d33ed0f6c00f2c04d09b77b7a09f1d6
  • master default protected
  • rednatco-v2
  • base-pairs-ladder
  • rednatco
  • test
  • ntc-tube-uniform-color
  • ntc-tube-missing-atoms
  • restore-vertex-array-per-program
  • watlas2
  • dnatco_new
  • cleanup-old-nodejs
  • webmmb
  • fix_auth_seq_id
  • update_deps
  • ext_dev
  • ntc_balls
  • nci-2
  • plugin
  • bugfix-0.4.5
  • nci
  • v0.5.0-dev.1
  • v0.4.5
  • v0.4.4
  • v0.4.3
  • v0.4.2
  • v0.4.1
  • v0.4.0
  • v0.3.12
  • v0.3.11
  • v0.3.10
  • v0.3.9
  • v0.3.8
  • v0.3.7
  • v0.3.6
  • v0.3.5
  • v0.3.4
  • v0.3.3
  • v0.3.2
  • v0.3.1
  • v0.3.0
41 results

deploy.js

Blame
  • setup.py 1.84 KiB
    #!/usr/bin/python3
    # -*- coding: utf-8 -*-
    #-------------------------------------------------------------------------------
    # Copyright (C) 2015-2016 Jan Mach <email@jan-mach.cz>
    # Use of this source is governed by the MIT license, see LICENSE file.
    #-------------------------------------------------------------------------------
    
    # Resources:
    #   https://packaging.python.org/en/latest/
    #   https://python-packaging.readthedocs.io/en/latest/index.html
    
    # Always prefer setuptools over distutils
    from setuptools import setup, find_packages
    # To use a consistent encoding
    from codecs import open
    from os import path
    
    import sys
    #
    # Import local version of pynspect library, so that we can insert correct version
    # number into documentation.
    #
    sys.path.insert(0, path.abspath('.'))
    import pydgets
    
    here = path.abspath(path.dirname(__file__))
    
    # Get the long description from the README file
    with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
        long_description = f.read()
    
    setup(
        name = 'pydgets',
        version = pydgets.__version__,
        description = 'Console widget library for Python 3',
        long_description = long_description,
        classifiers = [
            'Development Status :: 3 - Alpha',
            'License :: OSI Approved :: MIT License',
            'Programming Language :: Python :: 3 :: Only',
            'Environment :: Console',
        ],
        keywords = 'library console widgets',
        url = 'https://pypi.org/project/pydgets/',
        project_urls={
            'Documentation': 'https://709.gitlab-pages.cesnet.cz/mentat/pydgets/master/html/manual.html',
            'Source': 'https://gitlab.cesnet.cz/709/mentat/pydgets',
            'Tracker': 'https://gitlab.cesnet.cz/709/mentat/pydgets/-/issues'
        },
        author = 'Jan Mach',
        author_email = 'email@jan-mach.cz',
        license = 'MIT',
        packages = ['pydgets'],
        include_package_data = True,
        zip_safe = False
    )