|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=42", "wheel"] |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
3 | 3 | build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "pytimbr_sqla" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "Timbr Python SQLAlchemy connector" |
| 9 | +readme = "README.md" |
| 10 | +license-files = ["LICENSE", "licenses/*"] |
| 11 | +authors = [ |
| 12 | + { name = "timbr", email = "[email protected]"} |
| 13 | +] |
| 14 | +maintainers = [ |
| 15 | + { name = "timbr", email = "[email protected]"} |
| 16 | +] |
| 17 | +keywords = [ |
| 18 | + "timbr", |
| 19 | + "timbr-python", |
| 20 | + "timbr-connector", |
| 21 | + "python-connector", |
| 22 | + "PyTimbr", |
| 23 | + "pytimbr", |
| 24 | + "py-timbr", |
| 25 | + "Py-Timbr", |
| 26 | + "pytimbr_sqla", |
| 27 | + "pytimbr_Sqla", |
| 28 | + "PyTimbr_Sqla", |
| 29 | + "pytimbr_SQla", |
| 30 | + "PyTimbr_SQla", |
| 31 | + "pytimbr_SQLa", |
| 32 | + "PyTimbr_SQLa", |
| 33 | + "pytimbr_SQlA", |
| 34 | + "PyTimbr_SQLA", |
| 35 | + "pytimbrsqlalchemy", |
| 36 | + "PyTimbrSqlalchemy", |
| 37 | + "PyTimbrSQlalchemy", |
| 38 | + "PyTimbrSQLalchemy", |
| 39 | + "PyTimbrSQLAlchemy", |
| 40 | + "Py-TimbrSQLAlchemy", |
| 41 | + "py-timbrsqlalchemy", |
| 42 | + "Py-Timbr-SQLAlchemy", |
| 43 | + "py-timbr-sqlalchemy" |
| 44 | +] |
| 45 | +classifiers = [ |
| 46 | + "Development Status :: 5 - Production/Stable", |
| 47 | + "Intended Audience :: Developers", |
| 48 | + "Topic :: Software Development :: Build Tools", |
| 49 | + "License :: OSI Approved :: MIT License", |
| 50 | + "License :: OSI Approved :: Apache Software License", |
| 51 | + "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", |
| 52 | + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
| 53 | + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", |
| 54 | + "Programming Language :: Python :: 3", |
| 55 | + "Programming Language :: Python :: 3.9", |
| 56 | + "Programming Language :: Python :: 3.10", |
| 57 | + "Programming Language :: Python :: 3.11", |
| 58 | + "Programming Language :: Python :: 3.12" |
| 59 | +] |
| 60 | +requires-python = ">=3.9" |
| 61 | +dependencies = [ |
| 62 | + "future==1.0.0", |
| 63 | + "python-dateutil==2.9.0", |
| 64 | + "ldap3", |
| 65 | + "thrift_sasl==0.4.3", |
| 66 | + "pure-sasl>=0.6.2", |
| 67 | + "sqlalchemy>=1.4.36,<2.0.0", |
| 68 | + "requests_kerberos==0.15.0", |
| 69 | + "pyhive==0.7.0" |
| 70 | +] |
| 71 | + |
| 72 | +[project.urls] |
| 73 | +Homepage = "https://github.com/WPSemantix/timbr_python_SQLAlchemy" |
| 74 | +Download = "https://github.com/WPSemantix/timbr_python_SQLAlchemy/releases" |
| 75 | +"Bug Tracker" = "https://github.com/WPSemantix/timbr_python_SQLAlchemy/issues" |
| 76 | +Repository = "https://github.com/WPSemantix/timbr_python_SQLAlchemy" |
| 77 | +Documentation = "https://github.com/WPSemantix/timbr_python_SQLAlchemy#readme" |
| 78 | + |
| 79 | +[project.entry-points."sqlalchemy.dialects"] |
| 80 | +timbr = "pytimbr_sqla.sqlalchemy_timbr:TimbrDialect" |
| 81 | +"timbr.http" = "pytimbr_sqla.sqlalchemy_timbr:TimbrHTTPDialect" |
| 82 | +"timbr.https" = "pytimbr_sqla.sqlalchemy_timbr:TimbrHTTPSDialect" |
| 83 | + |
| 84 | +[tool.setuptools.packages.find] |
| 85 | +include = ["pytimbr_sqla*", "TCLIService*", "thrift*"] |
| 86 | + |
| 87 | +[tool.setuptools.package-data] |
| 88 | +"*" = ["*.txt", "*.md"] |
| 89 | +"thrift.transport" = ["*.py"] |
| 90 | + |
| 91 | +[tool.setuptools] |
| 92 | +include-package-data = true |
| 93 | + |
| 94 | +[tool.setuptools.dynamic] |
| 95 | +version = {attr = "pytimbr_sqla.__version__"} |
| 96 | + |
| 97 | +[tool.setuptools.exclude-package-data] |
| 98 | +"*" = ["test*", "tests*", "*.pyc", "__pycache__"] |
0 commit comments