-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·36 lines (32 loc) · 1.1 KB
/
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
33
34
35
36
#!/usr/bin/env python3
# encoding: utf-8
from setuptools import setup
with open('Readme.PyPI.md', 'r') as f:
long_description = f.read()
setup(
name='docker-compose-all',
description='A very simple Docker cluster management tool, recursively search and control all Docker Compose projects in a directory.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Phuker',
author_email='Phuker@users.noreply.github.com',
url='https://github.com/Phuker/docker-compose-all',
license='GNU General Public License v3.0',
packages=[],
py_modules = ['docker_compose_all'],
install_requires=[],
include_package_data=True,
entry_points={
'console_scripts': [
'docker-compose-all=docker_compose_all:main'
]
},
classifiers=[
'Environment :: Console',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
python_requires = '>=3.6'
)