-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 924 Bytes
/
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
import pathlib
from setuptools import setup, find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name='chalan',
version='0.1.4',
description='Elasticsearch migrations tool',
url='https://github.com/anandtripathi5/chalan',
author='Anand Tripathi',
author_email='[email protected]',
license='MIT License',
packages=find_packages(), # list of all packages,
include_package_data=True,
keyword="chalan, chalan elasticsearch tool, elasticsearch migration tool",
install_requires=['elasticsearch>8.0.0', 'typer>=0.6.1', 'rich>=12.5.1',
'Mako~=1.2.2'],
entry_points='''
[console_scripts]
chalan=src.commands:app
''',
package_data={'': ['templates/*.mako']},
long_description=README,
long_description_content_type="text/markdown",
)