diff --git a/setup.cfg b/setup.cfg index 982b22d..39c0acb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = firebolt-sqlalchemy -version = v1.0 +version = 0.0.1 author = Raghav Sharma author_email = raghavs@sigmoidanalytics.com description = Sqlalchemy adapter for Firebolt diff --git a/setup.py b/setup.py index 69ca5ed..cff4aa6 100644 --- a/setup.py +++ b/setup.py @@ -5,23 +5,20 @@ setuptools.setup( name="firebolt-sqlalchemy", - version="v1.0", + version="0.0.1", author="Raghav Sharma", author_email="raghavs@sigmoidanalytics.com", description="Sqlalchemy adapter for Firebolt", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/raghavSharmaSigmoid/firebolt-sqlalchemy", - download_url="https://github.com/raghavSharmaSigmoid/firebolt-sqlalchemy/archive/refs/tags/v1.0.tar.gz", + download_url="https://github.com/raghavSharmaSigmoid/firebolt-sqlalchemy/archive/refs/tags/0.0.1.tar.gz", project_urls={ "Bug Tracker": "https://github.com/raghavSharmaSigmoid/firebolt-sqlalchemy", }, install_requires=[ 'sqlalchemy>=1.0.0', "requests", - "json", - "itertools", - "collections", "datetime", "functools" ],