This repository was archived by the owner on Dec 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (42 loc) · 1.34 KB
/
setup.py
File metadata and controls
executable file
·45 lines (42 loc) · 1.34 KB
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="target-snowflake",
version="0.1.3",
author="Meltano",
author_email="meltano@gitlab.com",
description="Singer.io target for importing data to Snowflake",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.com/meltano/target-snowflake",
classifiers=["Programming Language :: Python :: 3 :: Only"],
install_requires=[
'inflection==0.3.1',
'singer-python==5.2.3',
'asn1crypto<1.0.0',
# conflicts resolution, see https://github.com/snowflakedb/snowflake-connector-python/issues/225
'azure-storage-blob<12.0',
'snowflake-connector-python==1.7.11',
'snowflake-sqlalchemy==1.1.12',
'SQLAlchemy==1.3.24',
# conflicts resolution, see https://gitlab.com/meltano/meltano/issues/193
'idna==2.7',
],
extras_require={
'dev': [
'pytest>=3.8',
'black>=18.3a0',
'freezegun'
]
},
entry_points="""
[console_scripts]
target-snowflake=target_snowflake:main
""",
python_requires='>=3.6',
packages=find_packages(exclude=['tests']),
package_data={},
include_package_data=True,
)