2018-10-19 17:29:13 +00:00
|
|
|
import setuptools
|
|
|
|
|
|
2019-03-19 13:25:18 +00:00
|
|
|
__version__ = '0.3.0'
|
2018-10-19 17:29:13 +00:00
|
|
|
with open('README.md', 'r') as fh:
|
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
|
name='portainer-cli',
|
|
|
|
|
version=__version__,
|
|
|
|
|
author='Ilhasoft\'s Web Team',
|
|
|
|
|
author_email='contato@ilhasoft.com.br',
|
|
|
|
|
description='Command line interface to easy communicate to your ' +
|
|
|
|
|
'Portainer application.',
|
|
|
|
|
long_description=long_description,
|
|
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
|
url='https://github.com/Ilhasoft/portainer-cli',
|
|
|
|
|
classifiers=[
|
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
|
'Environment :: Console',
|
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
|
],
|
|
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
|
scripts=['portainer-cli'],
|
|
|
|
|
install_requires=[
|
|
|
|
|
'plac>=1.0.0',
|
|
|
|
|
'requests>=2.20.0',
|
|
|
|
|
'validators>=0.12.2',
|
|
|
|
|
],
|
2018-11-29 20:31:44 +00:00
|
|
|
python_requires='>=2.7',
|
2018-10-19 17:29:13 +00:00
|
|
|
)
|