From 441487721c18dabb25e51d95de5f6e1f05e4eeb1 Mon Sep 17 00:00:00 2001 From: Erik Bernhardsson Date: Tue, 4 Dec 2018 17:14:37 -0500 Subject: [PATCH] publish to PyPI --- README.md | 2 +- docs/index.rst | 4 ++-- setup.py | 14 ++++++++++++-- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0e1a258..e83c879 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Postgres and Redshift are supported, although the latter is somewhat experimenta Installation --- -The easiest way to install this is (probably) to run `pip install -e git://github.com/better/jsonschema2db#egg=jsonschema2db` +The easiest way to install is `pip install jsonschema2db` Documentation --- diff --git a/docs/index.rst b/docs/index.rst index 3789ef4..e304476 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -8,11 +8,11 @@ Also see the `Github page `_ for source Installation ============ -The easiest way to install this is (probably) to run +The easiest way to install is from PyPI: :: - pip install -e git://github.com/better/jsonschema2db#egg=jsonschema2db + pip install jsonschema2db Quick overview diff --git a/setup.py b/setup.py index a1b2c86..5d30ca6 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,21 @@ from setuptools import setup +long_description = ''' +For more information, see +`the package documentation `_ +or +`the Github project page `_. +''' + setup(name='JSONSchema2DB', - version='1.0', + version='1.0.1', description='Generate database tables from JSON schema', + long_description=long_description, + url='https://better.engineering/convoys', + license='MIT', author='Erik Bernhardsson', - author_email='mail@erikbern.com', + author_email='erikbern@better.com', py_modules=['jsonschema2db'], install_requires=[ 'change_case==0.5.2',