Skip to content
Snippets Groups Projects
setup.py 959 B
Newer Older
  • Learn to ignore specific revisions
  • from setuptools import setup
    
    setup(
    
        name='TheCodeLabs-BaseUtils',
    
        packages=['TheCodeLabs_BaseUtils'],
    
        version='1.8.2',
    
        license='MIT',
        description='Useful python classes',
        author='TheCodeLabs',
        author_email='spam@thecodelabs.de',
        url='https://thecodelabs.de/TheCodeLabs/PythonLibs',
    
        download_url='https://pypi.thecodelabs.de',
    
        keywords=[],
        install_requires=[
    
    Robert Goldmann's avatar
    Robert Goldmann committed
            'snakeviz',
    
            'pyocclient',
            'requests'
    
    Robert Goldmann's avatar
    Robert Goldmann committed
        setup_requires=[
            'wheel'
        ],
    
        classifiers=[
            'Development Status :: 5 - Production/Stable',
            'Intended Audience :: Developers',
            'Topic :: Software Development :: Build Tools',
            'License :: OSI Approved :: MIT License',
    
            'Programming Language :: Python :: 3.7',
            'Programming Language :: Python :: 3.8',
            'Programming Language :: Python :: 3.9',
            'Programming Language :: Python :: 3.10'