Skip to content

Commit

Permalink
Updated setup and license
Browse files Browse the repository at this point in the history
  • Loading branch information
Parkayun committed Jul 21, 2015
1 parent 164fad3 commit 0fba63f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Copyright (c) 2010, Kou Man Tong
Copyright (c) 2015, Ayun Park
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
29 changes: 15 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
#!/usr/bin/env python
# vim: set fileencoding=utf8 shiftwidth=4 tabstop=4 textwidth=80 foldmethod=marker :
# Copyright (c) 2010, Kou Man Tong. All rights reserved.
# Copyright (c) 2015, Ayun Park. All rights reserved.
# For licensing, see LICENSE file included in the package.

from setuptools import setup, find_packages

setup(name = "bson",
version="0.3.3",
packages=["bson"],
install_requires = ["pytz>=2010b"],
author = "Kou Man Tong",
author_email = "[email protected]",
description = "BSON codec for Python",
long_description = \
"""Independent BSON codec for Python that doesn't depend on MongoDB.""",
platforms = "Any",
license = "BSD",
keywords = "BSON codec",
url = "http://github.com/martinkou/bson"
)
setup(
name="bson",
version="0.4.0",
packages=["bson"],
install_requires=["pytz>=2010b"],
author="Ayun Park",
author_email="[email protected]",
description="BSON codec for Python",
long_description="""Independent BSON codec for Python that doesn't depend on MongoDB.""",
platforms="Any",
license="BSD",
keywords="BSON codec",
url="http://github.com/Parkayun/bson"
)

0 comments on commit 0fba63f

Please sign in to comment.