Skip to content
Snippets Groups Projects
Select Git revision
  • 6fc68d07f9bcbda1718a7effb25102899e4c3be1
  • master default protected
  • 0.1.8
  • 0.1.7
  • 0.1.6
  • 0.1.5
  • 0.1.4
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.1.0
11 results

setup.py

Blame
  • setup.py 784 B
    #!/usr/bin/env python3
    from setuptools import find_packages
    from setuptools import setup
    
    setup(
        name='cflib',
        version='0.1.6',
        packages=find_packages(exclude=['examples', 'tests']),
    
        description='Crazyflie python driver',
        url='https://github.com/bitcraze/crazyflie-lib-python',
    
        author='Bitcraze and contributors',
        author_email='contact@bitcraze.io',
        license='GPLv3',
    
        classifiers=[
            'Development Status :: 4 - Beta',
            'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
            'Topic :: System :: Hardware :: Hardware Drivers',
            'Programming Language :: Python :: 2',
            'Programming Language :: Python :: 3'
        ],
    
        keywords='driver crazyflie quadcopter',
    
        install_requires='pyusb>=1.0.0b2',
    )