Skip to content
Snippets Groups Projects
Select Git revision
  • 404fa784d98632658a351864ecb2cb926e5b385c
  • master default protected
  • swin_transformer
  • light
  • tfrecord
  • bob_9_datafolder
  • bob8_test
  • no-pad-base
  • test_conda
  • generic_image_extractor
  • 19-dataset-handling
  • drgan
  • v0.2.0
  • v0.1.3b0
  • v0.1.2
  • v0.1.1
  • v0.1.0
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
  • v0.0.1
22 results

guide_conditionalgan.rst

Blame
  • setup.py 1.75 KiB
    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    
    from setuptools import setup, dist
    dist.Distribution(dict(setup_requires=['bob.extension']))
    
    from bob.extension.utils import load_requirements, find_packages
    install_requires = load_requirements()
    
    
    setup(
    
        name='bob.pyannote',
        version=open("version.txt").read().rstrip(),
        description="Bob's wrapper for for speech diarization based on pyannote framework",
    
        url='https://gitlab.idiap.ch/bob/bob.pyannote',
        license='BSD',
    
        # there may be multiple authors (separate entries by comma)
        author='Pavel Korshunov',
        author_email='pavel.korshunov@idiap.ch',
    
        # there may be a maintainer apart from the author - you decide
        #maintainer='?'
        #maintainer_email='email@example.com'
    
        # you may add more keywords separating those by commas (a, b, c, ...)
        keywords = "bob",
    
        long_description=open('README.rst').read(),
    
        # leave this here, it is pretty standard
        packages=find_packages(),
        include_package_data=True,
        zip_safe = False,
    
        install_requires=install_requires,
    
        entry_points={
          # add entry points (scripts, bob resources here, if any)
          },
    
        # check classifiers, add and remove as you see fit
        # full list here: https://pypi.org/classifiers/
        # don't remove the Bob framework unless it's not a bob package
        classifiers = [
          'Framework :: Bob',
          'Development Status :: 4 - Beta',
          'Intended Audience :: Science/Research',
          'License :: OSI Approved :: BSD License',
          'Natural Language :: English',
          'Programming Language :: Python',
          'Programming Language :: Python :: 3',
          'Topic :: Scientific/Engineering :: Artificial Intelligence',
          'Topic :: Software Development :: Libraries :: Python Modules',
          ],
    
    )