v0.8 - added PyPI metadata, ready to ship

This commit is contained in:
Simon Willison 2017-11-13 13:17:34 -08:00
commit fe279ab7b4
2 changed files with 15 additions and 2 deletions

View file

@ -2,7 +2,11 @@ from setuptools import setup, find_packages
setup(
name='datasette',
version='0.7',
description='An instant JSON API for your SQLite databases',
author='Simon Willison',
version='0.8',
license='Apache License, Version 2.0',
url='https://github.com/simonw/datasette',
packages=find_packages(),
package_data={'datasette': ['templates/*.html']},
include_package_data=True,
@ -22,4 +26,13 @@ setup(
'pytest==3.2.3',
'aiohttp==2.3.2',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Topic :: Database',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
],
)