Skip to content

Commit

Permalink
Setup.py changed
Browse files Browse the repository at this point in the history
  • Loading branch information
NJannasch committed Nov 18, 2019
1 parent 836a524 commit bc1b107
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from setuptools import setup

with open("README.md", "r") as fh:
long_description = fh.read()

setup(name='sqlalchemy_cloudsqlite',
version='0.1',
description='Cloud baked SQLite for Serverless Computing',
version='0.1.0dev0',
description='SQLite for Serverless Computing',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/njannasch/SQLAlchemy-CloudSQLite',
author='Nils Jannasch',
author_email='[email protected]',
Expand All @@ -13,5 +18,6 @@
"sqlalchemy.dialects": [
"cloudsqlite = sqlalchemy_cloudsqlite.dialect:CloudSQLiteDialect",
],
}
},
python_requires='>=3.6',
)

0 comments on commit bc1b107

Please sign in to comment.