forked from confluentinc/confluent-docker-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (20 loc) · 663 Bytes
/
setup.py
File metadata and controls
30 lines (20 loc) · 663 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
29
30
from setuptools import setup
setup(
name='confluent-docker-utils',
version='0.0.63',
author="Confluent, Inc.",
author_email="partner-support@confluent.io",
description='Common utils for Docker image sanity tests',
url="https://github.com/confluentinc/confluent-docker-utils",
install_requires=open('requirements.txt').read(),
packages=['confluent'],
include_package_data=True,
python_requires='>=3.6',
setup_requires=['setuptools-git'],
entry_points={
"console_scripts": [
"cub = confluent.docker_utils.cub:main",
"dub = confluent.docker_utils.dub:main",
]
}
)