-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (38 loc) · 1.08 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
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os.path
from setuptools import setup
import compose_mode
install_requires = [
'docker-compose >= 1.7',
'PyYAML >= 3.10',
]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
]
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme_file:
long_description = readme_file.read()
setup(
# Metadata
name='compose-mode',
version=compose_mode.__version__,
packages=['compose_mode'],
author='Kit Barnes',
author_email='[email protected]',
description='A tiny wrapper around docker-compose to '
'easily use multiple sets of config files',
long_description=long_description,
url='https://github.com/KitB/compose-mode',
license='MIT',
keywords='docker',
classifiers=classifiers,
# Non-metadata (mostly)
py_modules=[],
zip_safe=False,
install_requires=install_requires,
extras_require={},
scripts=['bin/compose-mode'],
package_data={},
)