We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97f2f74 commit d7c4ac3Copy full SHA for d7c4ac3
setup.py
@@ -1,10 +1,21 @@
1
from setuptools import setup, find_packages
2
+import os
3
+
4
5
+def get_long_description():
6
+ with open(os.path.join(
7
+ os.path.dirname(os.path.abspath(__file__)), 'README.md'
8
+ ), encoding='utf8') as fp:
9
+ return fp.read()
10
11
12
setup(
13
name='csvs_to_sqlite',
14
description='Convert CSV files into a SQLite database',
15
+ long_description=get_long_description(),
16
+ long_description_content_type='text/markdown',
17
author='Simon Willison',
- version='0.7',
18
+ version='0.8',
19
license='Apache License, Version 2.0',
20
packages=find_packages(),
21
install_requires=[
0 commit comments