This repository has been archived by the owner on Dec 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·59 lines (53 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import codecs
from setuptools import find_packages, setup
import ecr_cli
with codecs.open('README.rst', 'rb', 'utf-8') as readme:
long_description = readme.read()
setup(
name='ecr-cli',
version=ecr_cli.__version__,
description='Goodbye docker login & a long repository URL for Amazon ECR :)',
long_description=long_description,
url='https://github.com/laughingman7743/ecr-cli/',
author='laughingman7743',
author_email='[email protected]',
license='MIT License',
packages=find_packages(),
package_data={
'': ['*.rst'],
},
install_requires=[
'future',
'click>=6.0',
'PyYAML>=3.12',
'boto3>=1.5.0',
'docker>=3.1.0',
'tqdm>=4.19.0'
],
tests_require=[
'pytest>=3.5',
'pytest-cov',
'pytest-flake8',
],
entry_points={
'console_scripts': [
'ecr = ecr_cli.cli:cli',
],
},
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)