-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
41 lines (36 loc) · 1.27 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
import os
import kaniko
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
README = f.read()
setup(
name=kaniko.__title__,
version=kaniko.__version__,
packages=find_packages(
exclude=('tests', '*tests', '*tests*')
), # We throw away from the assembly too much.
include_package_data=True,
test_suite='tests', # Include tests.
license='Apache 2.0', # Put the license.
description='Python kaniko https://github.com/GoogleContainerTools/kaniko',
long_description=README,
long_description_content_type='text/markdown',
install_requires=[],
tests_require=['codecov>=2', 'coverage>=4'],
setup_requires=['twine>=1', 'mkdocs>=1'],
url=kaniko.__url__,
author=kaniko.__author__,
author_email=kaniko.__email__,
maintainer='Deys Timofey',
maintainer_email='[email protected]',
classifiers=[
'Environment :: Server Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
zip_safe=True,
)