Skip to content

Commit

Permalink
publish to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Bernhardsson committed Dec 4, 2018
1 parent e9a15a7 commit 4414877
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Also see the `Github page <https://github.com/better/jsonschema2db>`_ 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
Expand Down
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,21 @@

from setuptools import setup

long_description = '''
For more information, see
`the package documentation <https://better.engineering/jsonschema2db>`_
or
`the Github project page <https://github.com/better/jsonschema2db>`_.
'''

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',
Expand Down

0 comments on commit 4414877

Please sign in to comment.