-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 789 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 789 Bytes
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
from setuptools import setup, find_packages
setup(
zip_safe=True,
use_2to3=False,
name='sidecarinit',
version='0.0.1',
long_description='sidecar-init container for download archive and unzip',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Public License v2 (APL)",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
"Topic :: Utilities",
],
license='APLv2+',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
install_requires=[
"ruamel.yaml",
"click"
],
entry_points={
'console_scripts': [
'run-sidecar-init = sidecarinit:run'
],
}
)