|
| 1 | +import setuptools |
| 2 | + |
| 3 | +with open("README.md", "r", encoding="utf-8") as fh: |
| 4 | + long_description = fh.read() |
| 5 | + |
| 6 | +setuptools.setup( |
| 7 | + name="sqlalchemy-trino", |
| 8 | + version="0.1.0", |
| 9 | + author="Dũng Đặng Minh", |
| 10 | + |
| 11 | + description="Trino dialect for SQLAlchemy", |
| 12 | + long_description=long_description, |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + url="https://github.com/dungdm93/sqlalchemy-trino", |
| 15 | + keywords=["sqlalchemy", "trino"], |
| 16 | + packages=["sqlalchemy_trino"], |
| 17 | + license="Apache 2.0", |
| 18 | + platforms=["any"], |
| 19 | + classifiers=[ |
| 20 | + "Intended Audience :: Developers", |
| 21 | + "License :: OSI Approved :: Apache Software License", |
| 22 | + "Operating System :: OS Independent", |
| 23 | + "Programming Language :: Python", |
| 24 | + "Programming Language :: Python :: 3", |
| 25 | + "Programming Language :: Python :: 3.7", |
| 26 | + "Programming Language :: Python :: 3.8", |
| 27 | + "Programming Language :: Python :: 3.9", |
| 28 | + "Programming Language :: Python :: Implementation :: CPython", |
| 29 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 30 | + "Topic :: Database", |
| 31 | + "Topic :: Database :: Front-Ends", |
| 32 | + ], |
| 33 | + python_requires='>=3.7', |
| 34 | + install_requires=[ |
| 35 | + "sqlalchemy~=1.3", |
| 36 | + "trino~=0.305", |
| 37 | + ], |
| 38 | + entry_points={ |
| 39 | + "sqlalchemy.dialects": [ |
| 40 | + "trino = sqlalchemy_trino.dialect:TrinoDialect", |
| 41 | + ] |
| 42 | + }, |
| 43 | +) |
0 commit comments