Skip to content

Commit

Permalink
fixing setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
shaypal5 committed Mar 3, 2017
1 parent f10dfcb commit cace2b6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
7 changes: 2 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
[metadata]
name = morejson
summary = morejson
summary = Wraps Python json module, supporting to more Python built-in types.
author = Shay Palachy
author-email = shaypal5@gmail.com
license = 'MIT'
license = MIT
home-page = https://github.com/shaypal5/morejson
url = https://github.com/shaypal5/morejson
description = "morejson is a drop-in replacement for Python's json module that"
" handles additional built-in and standard library Python types."
description-file = README.rst
# Add here all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@
README = f.read()

setup(
author="Shay Palachy",
author_email="shaypal5@gmail.com",
name='morejson',
description="morejson is a drop-in replacement for Python's json module "
"that handles additional built-in and standard library Python"
" types.",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
long_description=README,
url='https://github.com/shaypal5/morejson',
packages=find_packages(),
install_requires=[],
test_suite='nose.collector',
Expand Down

0 comments on commit cace2b6

Please sign in to comment.