-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
16 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
) |