-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
29 lines (25 loc) · 893 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
29
from pathlib import Path
from setuptools import setup, find_packages
from dbt_invoke.internal import _version
PARENT_DIR = Path(__file__).parent
README = Path(PARENT_DIR, 'README.md').read_text()
setup(
name='dbt-invoke',
version=_version.__version__,
author='Robert Astel, Jennifer Zhan, Vincent Dragonette',
author_email='[email protected]',
license='Apache License 2.0',
description=(
'dbt-invoke is a CLI for creating, updating, and deleting'
' dbt property files.'
),
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/Dashlane/dbt-invoke',
packages=find_packages(),
install_requires=['invoke>=1.4.1', 'PyYAML>=5.1', 'ruamel.yaml>=0.17.12'],
python_requires='>=3.7.0',
entry_points={
'console_scripts': ["dbt-invoke = dbt_invoke.main:program.run"]
},
)