-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 940 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='harbormaster',
version='0.3.2',
description='automating docker remote host forwarding',
long_description=readme(),
long_description_content_type="text/markdown",
url='https://github.com/tanishq-dubey/harbormaster',
author='Tanishq Dubey',
author_email='[email protected]',
license='MIT',
packages=['harbormaster'],
install_requires=[
'docker',
],
zip_safe=False,
scripts=['bin/harbormaster'],
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',
])