forked from littleK0i/SnowDDL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
54 lines (44 loc) · 1.39 KB
/
setup.cfg
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
[metadata]
name = snowddl
version = attr: snowddl.version.__version__
author = Vitaly Markov
author_email = [email protected]
url = https://github.com/littleK0i/snowddl
description = Object management automation tool for Snowflake
long_description = file: README.md
long_description_content_type = text/markdown
keywords = snowflake,database,schema,object,change,ddl,sql,create,alter,drop,grant,table,view
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Intended Audience :: Developers
Topic :: Database
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
packages = find:
python_requires = >=3.8
install_requires =
jsonschema~=4.18
pydantic~=2.4
pyyaml~=6.0
snowflake-connector-python~=3.0
[options.extras_require]
dev =
black
pytest
ruff
sso-caching =
snowflake-connector-python[secure-local-storage]~=3.0
[options.entry_points]
console_scripts =
snowddl = snowddl.app.base:entry_point
snowddl-convert = snowddl.app.convert:entry_point
snowddl-singledb = snowddl.app.singledb:entry_point
snowddl-fernet = snowddl.fernet.cli:entry_point
[options.package_data]
snowddl = _config/**/*.yaml