File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 11[metadata]
22name = firebolt-sqlalchemy
3- version = 0.0.6
3+ version = 0.0.8
44author = Firebolt
5566description = Sqlalchemy adapter for Firebolt
Original file line number Diff line number Diff line change 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 = "firebolt-sqlalchemy" ,
8+ version = "0.0.8" ,
9+ author = "Firebolt" ,
10+ 11+ description = "Sqlalchemy adapter for Firebolt" ,
12+ long_description = long_description ,
13+ long_description_content_type = "text/markdown" ,
14+ url = "https://github.com/firebolt-db/firebolt-sqlalchemy" ,
15+ download_url = "https://github.com/firebolt-db/firebolt-sqlalchemy/archive/refs/tags/0.0.8.tar.gz" ,
16+ project_urls = {
17+ "Bug Tracker" : "https://github.com/firebolt-db/firebolt-sqlalchemy" ,
18+ },
19+ install_requires = [
20+ 'sqlalchemy>=1.0.0' ,
21+ "requests" ,
22+ "datetime"
23+ ],
24+ entry_points = {
25+ "sqlalchemy.dialects" : [
26+ "firebolt = firebolt_db.firebolt_dialect:FireboltDialect"
27+ ],
28+ },
29+ classifiers = [
30+ "Programming Language :: Python :: 3" ,
31+ "License :: OSI Approved :: MIT License" ,
32+ "Operating System :: OS Independent" ,
33+ ],
34+ package_dir = {"" : "src" },
35+ packages = setuptools .find_packages (where = "src" ),
36+ python_requires = ">=3.6" ,
37+ )
You can’t perform that action at this time.
0 commit comments