-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.04 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
from setuptools import setup, find_packages
from snowflake_dbml.version import __version__
setup(
name='snowflake-dbml-generator',
version=__version__,
packages=find_packages(),
entry_points={
'console_scripts': [
'snowflake-dbml=snowflake_dbml.generator:main',
],
},
author='Ryan Rozich',
author_email='[email protected]',
description='Automatically generate DBML files from Snowflake databases.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/ryanrozich/snowflake-dbml-generator',
install_requires=[
'snowflake-connector-python>=3.9.0', # Connect to Snowflake
'python-dotenv>=1.0.1', # For loading environment variables from .env files
'pydbml>=0.1.11' # Generate DBML files
],
classifiers=[
# Classifiers can help people find your project
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
]
)