Skip to content

Commit

Permalink
make it PyPI compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
tanishq-dubey committed Nov 16, 2019
1 parent 8adb0a1 commit c2cc0c9
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 5 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md
9 changes: 4 additions & 5 deletions harbormaster.py → harbormaster/harbormaster.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
#! /usr/bin/python3
#! /usr/bin/env python3

import sys
import os

import docker
import argparse
import logging

import subprocess
import time
import argparse

import docker


dockerTunnel = None
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docker==3.7.3
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from setuptools import setup

def readme():
with open('README.md') as f:
return f.read()

setup(name='harbormaster',
version='0.2',
description='automating docker remote host forwarding',
long_description=readme(),
url='https://github.com/tanishq-dubey/harbormaster',
author='Tanishq Dubey',
author_email='tanishq@dubey.dev',
license='MIT',
packages=['harbormaster'],
zip_safe=False,
scripts=['harbormaster/harbormaster.py'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Utilities',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
])

0 comments on commit c2cc0c9

Please sign in to comment.