-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (43 loc) · 1.39 KB
/
setup.py
File metadata and controls
46 lines (43 loc) · 1.39 KB
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
46
#!python
# coding=utf-8
__author__ = "Garrett Bates"
__copyright__ = "© Copyright 2020, Tartan Solutions, Inc"
__credits__ = ["Garrett Bates"]
__license__ = "Apache 2.0"
__version__ = "0.1.3"
__maintainer__ = "Garrett Bates"
__email__ = "garrett.bates@tartansolutions.com"
__status__ = "Development"
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='docker-entrypoint',
author='Garrett Bates, Dave Parsons',
author_email='garrett.bates@tartansolutions.com, dave.parsons@tartansolutions.com',
description="Basic utility to proxy a container's normal entrypoint",
version='0.1.3',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/PlaidCloud/docker-entrypoint',
keywords='container kubernetes debug development',
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
],
packages=find_packages(),
install_requires=[
'python-dotenv',
'ptvsd',
'pydevd-pycharm',
],
entry_points='''
[console_scripts]
entrypoint=entrypoint.main:main
''',
python_requires='>=3.7',
)