Docker Plugin API in Python
Jacek Kowalski
2020-05-03 f7563b812fd7c6cc1103263fc38c6be9d669cc4b
commit | author | age
881ffe 1 #!/usr/bin/env python3
JK 2
3 from setuptools import setup
4
5 with open('README.md', 'r') as fh:
6     long_description = fh.read()
7
8 setup(
9     name='docker-plugin-api',
10     version='0.0-git',
11     use_scm_version=True,
12     description='Python interface to Docker Plugin API',
13     long_description=long_description,
14     long_description_content_type='text/markdown',
15     author='Jacek Kowalski',
16     author_email='Jacek@jacekk.info',
17     url='https://github.com/jacekkow/docker-plugin-api',
18     license='BSD',
19     setup_requires=['setuptools_scm', 'wheel'],
20     install_requires=['Flask'],
21     packages=['docker_plugin_api'],
22     classifiers=[
23         'Intended Audience :: Developers',
24         'License :: OSI Approved :: BSD License',
25         'Operating System :: OS Independent',
26         'Programming Language :: Python :: 3 :: Only',
27     ],
28     python_requires='>=3.6',
29 )