Skip to content

Commit bc1b107

Browse files
committed
Setup.py changed
1 parent 836a524 commit bc1b107

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

setup.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
from setuptools import setup
22

3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
36
setup(name='sqlalchemy_cloudsqlite',
4-
version='0.1',
5-
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",
611
url='https://github.com/njannasch/SQLAlchemy-CloudSQLite',
712
author='Nils Jannasch',
813
author_email='nils@njann.de',
@@ -13,5 +18,6 @@
1318
"sqlalchemy.dialects": [
1419
"cloudsqlite = sqlalchemy_cloudsqlite.dialect:CloudSQLiteDialect",
1520
],
16-
}
21+
},
22+
python_requires='>=3.6',
1723
)

0 commit comments

Comments
 (0)