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