-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
39 lines (36 loc) · 1008 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
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="target-duckdb",
version="0.8.0",
description="Singer.io target for loading data into DuckDB",
long_description=long_description,
long_description_content_type="text/markdown",
author="Josh Wills",
url="https://github.com/jwills/target-duckdb",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
],
py_modules=["target_duckdb"],
install_requires=[
"jsonschema>=3.2.0",
"duckdb>=1.0.0",
],
extras_require={
"test": [
"pytest",
"pylint",
"pytest-cov",
]
},
entry_points="""
[console_scripts]
target-duckdb=target_duckdb:main
""",
packages=["target_duckdb"],
package_data={"target_duckdb": ["logging.conf"]},
include_package_data=True,
)