mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 08:52:06 +00:00
18 lines
428 B
Python
18 lines
428 B
Python
|
from setuptools import find_packages, setup
|
||
|
|
||
|
setup(
|
||
|
name="praktika",
|
||
|
version="0.1",
|
||
|
packages=find_packages(),
|
||
|
url="https://github.com/ClickHouse/praktika",
|
||
|
license="Apache 2.0",
|
||
|
author="Max Kainov",
|
||
|
author_email="max.kainov@clickhouse.com",
|
||
|
description="CI Infrastructure Toolbox",
|
||
|
entry_points={
|
||
|
"console_scripts": [
|
||
|
"praktika=praktika.__main__:main",
|
||
|
]
|
||
|
},
|
||
|
)
|