Skip to content

Commit

Permalink
version number moved inside package
Browse files Browse the repository at this point in the history
copyrights updated
  • Loading branch information
histrio committed May 7, 2015
1 parent b7e2233 commit f269112
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 26 deletions.
2 changes: 1 addition & 1 deletion LICENSE
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.

Expand Down
9 changes: 7 additions & 2 deletions pycouchdb/__init__.py
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
4 changes: 2 additions & 2 deletions pycouchdb/view.py
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.

Expand Down Expand Up @@ -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]>
"""

Expand Down
4 changes: 0 additions & 4 deletions scripts/couchtest.txt

This file was deleted.

3 changes: 0 additions & 3 deletions scripts/runtests_with_coverage.sh

This file was deleted.

33 changes: 19 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"]
)

0 comments on commit f269112

Please sign in to comment.