|
| 1 | +[tool.poetry] |
| 2 | +name = "sqeleton" |
| 3 | +version = "0.0.1" |
| 4 | +description = "Python library for querying SQL databases" |
| 5 | +authors = ["Erez Shinan <erezshin@gmail.com>"] |
| 6 | +license = "MIT" |
| 7 | +readme = "README.md" |
| 8 | +repository = "https://github.com/datafold/sqeleton" |
| 9 | +documentation = "" |
| 10 | +classifiers = [ |
| 11 | + "Intended Audience :: Developers", |
| 12 | + "Intended Audience :: Information Technology", |
| 13 | + "Intended Audience :: System Administrators", |
| 14 | + "Programming Language :: Python :: 3.7", |
| 15 | + "Programming Language :: Python :: 3.8", |
| 16 | + "Programming Language :: Python :: 3.9", |
| 17 | + "Programming Language :: Python :: 3.10", |
| 18 | + "Development Status :: 2 - Pre-Alpha", |
| 19 | + "Environment :: Console", |
| 20 | + "Topic :: Database :: Database Engines/Servers", |
| 21 | + "Typing :: Typed" |
| 22 | +] |
| 23 | +packages = [{ include = "sqeleton" }] |
| 24 | + |
| 25 | +[tool.poetry.dependencies] |
| 26 | +python = "^3.7" |
| 27 | +runtype = "^0.2.6" |
| 28 | +dsnparse = "*" |
| 29 | +click = "^8.1" |
| 30 | +rich = "*" |
| 31 | +toml = "^0.10.2" |
| 32 | +mysql-connector-python = {version="8.0.29", optional=true} |
| 33 | +psycopg2 = {version="*", optional=true} |
| 34 | +snowflake-connector-python = {version="^2.7.2", optional=true} |
| 35 | +cryptography = {version="*", optional=true} |
| 36 | +trino = {version="^0.314.0", optional=true} |
| 37 | +presto-python-client = {version="*", optional=true} |
| 38 | +clickhouse-driver = {version="*", optional=true} |
| 39 | +duckdb = {version="^0.6.0", optional=true} |
| 40 | + |
| 41 | +[tool.poetry.dev-dependencies] |
| 42 | +parameterized = "*" |
| 43 | +unittest-parallel = "*" |
| 44 | +duckdb = "^0.6.0" |
| 45 | + |
| 46 | +[tool.poetry.extras] |
| 47 | +mysql = ["mysql-connector-python"] |
| 48 | +postgresql = ["psycopg2"] |
| 49 | +snowflake = ["snowflake-connector-python", "cryptography"] |
| 50 | +presto = ["presto-python-client"] |
| 51 | +oracle = ["cx_Oracle"] |
| 52 | +# databricks = ["databricks-sql-connector"] |
| 53 | +trino = ["trino"] |
| 54 | +clickhouse = ["clickhouse-driver"] |
| 55 | +vertica = ["vertica-python"] |
| 56 | +duckdb = ["duckdb"] |
| 57 | + |
| 58 | +[build-system] |
| 59 | +requires = ["poetry-core>=1.0.0"] |
| 60 | +build-backend = "poetry.core.masonry.api" |
| 61 | + |
| 62 | +[tool.poetry.scripts] |
| 63 | +sqeleton = 'sqeleton.__main__:main' |
0 commit comments