Skip to content

Commit dfe69bd

Browse files
author
Pop Cosmin
committed
add back the setup.py
1 parent b8c55f8 commit dfe69bd

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = firebolt-sqlalchemy
3-
version = 0.0.6
3+
version = 0.0.8
44
author = Firebolt
55
author_email = [email protected]
66
description = Sqlalchemy adapter for Firebolt

setup.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
author_email="[email protected]",
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+
)

0 commit comments

Comments
 (0)