We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 836a524 commit bc1b107Copy full SHA for bc1b107
1 file changed
setup.py
@@ -1,8 +1,13 @@
1
from setuptools import setup
2
3
+with open("README.md", "r") as fh:
4
+ long_description = fh.read()
5
+
6
setup(name='sqlalchemy_cloudsqlite',
- version='0.1',
- description='Cloud baked SQLite for Serverless Computing',
7
+ version='0.1.0dev0',
8
+ description='SQLite for Serverless Computing',
9
+ long_description=long_description,
10
+ long_description_content_type="text/markdown",
11
url='https://github.com/njannasch/SQLAlchemy-CloudSQLite',
12
author='Nils Jannasch',
13
author_email='nils@njann.de',
@@ -13,5 +18,6 @@
18
"sqlalchemy.dialects": [
14
19
"cloudsqlite = sqlalchemy_cloudsqlite.dialect:CloudSQLiteDialect",
15
20
],
16
- }
21
+ },
22
+ python_requires='>=3.6',
17
23
)
0 commit comments