-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
45 lines (39 loc) · 1.39 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
#!/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.4.2"
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.14,<2", "dbt-core>=1.5.0,<1.6.0"],
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",
)