forked from krisb78/py-couchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
copyrights updated
- Loading branch information
Showing
6 changed files
with
29 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright (c) 2013 Andrey Antukh <[email protected]> | ||
Copyright (c) 2015 Andrey Antukh <[email protected]> | ||
|
||
All rights reserved. | ||
|
||
|
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,5 +1,10 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from .client import Server | ||
|
||
__author__ = "Andrey Antukh" | ||
__license__ = "BSD" | ||
__version__ = "1.12" | ||
__maintainer__ = "Rinat Sabitov" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
||
from .client import Server |
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,7 +1,7 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright (C) 2013 Andrey Antukh <[email protected]> | ||
# Copyright (C) 2015 Andrey Antukh <[email protected]> | ||
# Copyright (C) 2007-2008 Christopher Lenz | ||
# All rights reserved. | ||
|
||
|
@@ -152,7 +152,7 @@ def rereduce(*cmd): | |
|
||
_VERSION = """%(name)s - CouchDB Python %(version)s | ||
Copyright (C) 2013 Andrey Antukh <[email protected]> | ||
Copyright (C) 2015 Andrey Antukh <[email protected]> | ||
Copyright (C) 2007 Christopher Lenz <[email protected]> | ||
""" | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,23 +3,28 @@ | |
description = "Modern pure python CouchDB Client." | ||
|
||
try: | ||
from distutils.command.build_py import build_py_2to3 as build_py | ||
from distutils.command.build_py import build_py_2to3 as build_py | ||
except ImportError: | ||
from distutils.command.build_py import build_py | ||
|
||
import pycouchdb | ||
VERSION = pycouchdb.__version__ | ||
|
||
setup( | ||
name = "pycouchdb", | ||
url = "https://github.com/niwibe/py-couchdb", | ||
author = "Andrey Antukh", | ||
author_email = "[email protected]", | ||
version="1.12", | ||
packages = [ | ||
name="pycouchdb", | ||
url="https://github.com/histrio/py-couchdb", | ||
author="Andrey Antukh", | ||
author_email="[email protected]", | ||
maintainer='Rinat Sabitov', | ||
maintainer_email='[email protected]', | ||
version=VERSION, | ||
packages=[ | ||
"pycouchdb", | ||
], | ||
description = description.strip(), | ||
zip_safe = False, | ||
include_package_data = True, | ||
classifiers = [ | ||
description=description.strip(), | ||
zip_safe=False, | ||
include_package_data=True, | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Web Environment", | ||
"License :: OSI Approved :: BSD License", | ||
|
@@ -33,11 +38,11 @@ | |
"Topic :: Software Development :: Libraries", | ||
"Topic :: Utilities", | ||
], | ||
entry_points = { | ||
entry_points={ | ||
"console_scripts": [ | ||
"couchpy = pycouchdb.view:main" | ||
], | ||
}, | ||
cmdclass = {"build_py": build_py}, | ||
install_requires = ["requests"] | ||
cmdclass={"build_py": build_py}, | ||
install_requires=["requests"] | ||
) |