-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
77 lines (72 loc) · 2.2 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
import os
from distutils.core import setup
from setuptools import find_packages # type: ignore
def _get_version():
version_file = os.path.normpath(os.path.join(os.path.dirname(__file__), 'recce', 'VERSION'))
with open(version_file) as fh:
version = fh.read().strip()
return version
setup(name='recce',
version=_get_version(),
description='Environment diff tool for dbt',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='InfuseAI Dev Team',
author_email='[email protected]',
url='https://github.com/InfuseAI/recce',
entry_points={
'console_scripts': ['recce = recce.cli:cli']
},
python_requires=">=3.9",
packages=find_packages(),
install_requires=[
'boto3',
'requests>=2.28.1',
'ruamel.yaml>=0.18.6',
'click>=7.1',
'deepdiff>=7.0,<8.0',
'portalocker',
'fastapi',
'itsdangerous',
'uvicorn',
'pydantic',
'jinja2',
'requests>=2.28.1',
'rich>=12.0.0',
'sentry-sdk',
'watchdog',
'websockets',
'py-markdown-table',
'python-dateutil',
'python-multipart',
'GitPython',
'PyGithub',
'sqlglot',
],
tests_require=['pytest'],
extras_require={
'dev': [
'pytest>=4.6',
'pytest-flake8',
'flake8==3.9.2',
'pytest-mypy',
'pytest-cov',
'twine',
'tox',
'pandas',
'httpx',
],
},
project_urls={
"Bug Tracker": "https://github.com/InfuseAI/recce/issues",
},
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
],
package_data={"recce": ['VERSION', 'data/**', 'event/SENTRY_DNS', 'event/CONFIG']})