-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.2 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = "dockerctl",
version = "0.5",
description = "Python Script to steer (multiple) docker-compose-yaml's from everywhere.",
long_description= long_description,
long_description_content_type="text/markdown",
url = "https://github.com/bionade24/dockerctl",
author = "Oskar Roesler (bionade24)",
author_email = "[email protected]",
license = "GPLv3",
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Pick your license as you wish
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
"Operating System :: POSIX :: Linux",
],
py_modules = ["dockerctl"],
install_requires = ["argparse", "docker-compose"],
packages = ["dockerctl"],
scripts = ["bin/dockerctl"]
)