-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
32 lines (30 loc) · 973 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import setuptools
__version__ = '0.3.0'
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='[email protected]',
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',
],
python_requires='>=2.7',
)