forked from dbt-labs/dbt-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (42 loc) · 1.41 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
#!/usr/bin/env python
import os
from setuptools import setup, find_namespace_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
package_name = "dbt-rpc"
package_version = "0.3.0"
description = """ A JSON RPC server that provides an interface to programmically interact with dbt projects. """
setup(
name=package_name,
version=package_version,
description=description,
long_description=description,
author="dbt Labs",
author_email="[email protected]",
url="https://github.com/dbt-labs/dbt-rpc",
packages=find_namespace_packages(include=['dbt_rpc', 'dbt_rpc.*']),
include_package_data=True,
test_suite='tests',
entry_points={
'console_scripts': [
'dbt-rpc = dbt_rpc.__main__:main',
],
},
install_requires=[
'json-rpc~=1.13.0',
'dbt-core>=1.3.0rc1'
],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires=">=3.6.3",
)